mirror of
https://github.com/e107inc/e107.git
synced 2025-08-27 08:14:46 +02:00
More notice removal
This commit is contained in:
@@ -605,7 +605,7 @@ class system_tools
|
||||
|
||||
foreach($pref_types as $key=>$description)
|
||||
{
|
||||
$checked = ($_POST['xml_prefs'][$key] == $key) ? 1: 0;
|
||||
$checked = (vartrue($_POST['xml_prefs'][$key]) == $key) ? 1: 0;
|
||||
|
||||
$text .= "<tr>
|
||||
<td>
|
||||
@@ -636,7 +636,7 @@ class system_tools
|
||||
|
||||
foreach($tables as $name=>$count)
|
||||
{
|
||||
$checked = ($_POST['xml_tables'][$name] == $name) ? 1: 0;
|
||||
$checked = (vartrue($_POST['xml_tables'][$name]) == $name) ? 1: 0;
|
||||
$text .= "<tr>
|
||||
<td>
|
||||
".$frm->checkbox("xml_tables[".$name."]", $name, $checked)." Table Data: ".$name."
|
||||
|
Reference in New Issue
Block a user