1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-18 12:21:45 +02:00

Issue #5465 Fix single quotes.

This commit is contained in:
camer0n
2025-04-04 18:44:23 -07:00
parent 31e7d1d3b0
commit 9f40b4d8a9
4 changed files with 16 additions and 16 deletions

View File

@@ -21,12 +21,12 @@ if (e_QUERY) list($action,$junk) = explode('.', e_QUERY); else $action = 'list';
function common_filters()
{
$ret = "<b>Data filters</b><br />
return "<b>Data filters</b><br />
You can specify various filters which restrict the amount of data to view. These are retained in a cookie until you log off.<br />
The start and end date/time filters have to be enabled through their respective checkboxes.<br />
Other filters are active when there is a value in the box.<br />
";
return $ret;
}
@@ -72,4 +72,4 @@ default :
(At present, logging is still being added to the code, so the list is not complete.)<br /><br />";
$text .= common_filters();
}
$ns -> tablerender($caption, $text);
e107::getRender()->tablerender($caption, $text);