Remove warnings
This commit is contained in:
parent
0823322ba1
commit
8acb68a1bf
@ -205,9 +205,7 @@ print '<br>';
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="formelementrow">
|
<div class="formelementrow">
|
||||||
<input type="checkbox" name="disable_fk" value="yes"
|
<input type="checkbox" name="disable_fk" value="yes" id="checkbox_disable_fk" checked="true" />
|
||||||
id="checkbox_disable_fk" checked="true"
|
|
||||||
/>
|
|
||||||
<label for="checkbox_disable_fk">
|
<label for="checkbox_disable_fk">
|
||||||
<?php echo $langs->trans("CommandsToDisableForeignKeysForImport"); ?></label>
|
<?php echo $langs->trans("CommandsToDisableForeignKeysForImport"); ?></label>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -122,9 +122,8 @@ print '<br>';
|
|||||||
|
|
||||||
if (empty($_GET["showpass"])) print '<br><a href="'.$_SERVER["PHP_SELF"].'?showpass=1&radio_dump=mysql_options">'.$langs->trans("UnHidePassword").'</a>';
|
if (empty($_GET["showpass"])) print '<br><a href="'.$_SERVER["PHP_SELF"].'?showpass=1&radio_dump=mysql_options">'.$langs->trans("UnHidePassword").'</a>';
|
||||||
//else print '<br><a href="'.$_SERVER["PHP_SELF"].'?showpass=0&radio_dump=mysql_options">'.$langs->trans("HidePassword").'</a>';
|
//else print '<br><a href="'.$_SERVER["PHP_SELF"].'?showpass=0&radio_dump=mysql_options">'.$langs->trans("HidePassword").'</a>';
|
||||||
print '</div>';
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
</div>
|
||||||
|
|
||||||
<script type="text/javascript" language="javascript">
|
<script type="text/javascript" language="javascript">
|
||||||
//<![CDATA[
|
//<![CDATA[
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2007 Laurent Destailleur <eldy@users.sourceforge.net>
|
/* Copyright (C) 2007-2009 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -283,23 +283,19 @@ $var=true;
|
|||||||
$res=eaccelerator_cached_scripts(); // If success return an array
|
$res=eaccelerator_cached_scripts(); // If success return an array
|
||||||
if (is_array($res)) create_script_table($res);
|
if (is_array($res)) create_script_table($res);
|
||||||
else print "Check in your <b>php.ini</b> that <b>eaccelerator.allowed_admin_path</b> parameter is "._FILE;
|
else print "Check in your <b>php.ini</b> that <b>eaccelerator.allowed_admin_path</b> parameter is "._FILE;
|
||||||
?>
|
|
||||||
|
|
||||||
<br><br>
|
print '<br><br>';
|
||||||
<b>Removed scripts</b><br>
|
print '<b>Removed scripts</b><br>';
|
||||||
<table>
|
|
||||||
<?php
|
|
||||||
$res=eaccelerator_removed_scripts();
|
$res=eaccelerator_removed_scripts();
|
||||||
if (is_array($res)) create_script_table($res);
|
if (is_array($res)) create_script_table($res);
|
||||||
else print "Check in your <b>php.ini</b> that <b>eaccelerator.allowed_admin_path</b> parameter is "._FILE;
|
else print "Check in your <b>php.ini</b> that <b>eaccelerator.allowed_admin_path</b> parameter is "._FILE;
|
||||||
|
|
||||||
|
|
||||||
if (function_exists('eaccelerator_get')) {
|
if (function_exists('eaccelerator_get'))
|
||||||
?>
|
{
|
||||||
<br><br>
|
print '<br><br>';
|
||||||
<b>Cached keys</b><br>
|
print '<b>Cached keys</b><br>';
|
||||||
<table>
|
|
||||||
<?php
|
|
||||||
$res=eaccelerator_list_keys();
|
$res=eaccelerator_list_keys();
|
||||||
create_key_table($res);
|
create_key_table($res);
|
||||||
}
|
}
|
||||||
@ -308,7 +304,7 @@ if (function_exists('eaccelerator_get')) {
|
|||||||
<br /><br />
|
<br /><br />
|
||||||
<hr />
|
<hr />
|
||||||
<table>
|
<table>
|
||||||
<tr><td class="center">
|
<tr><td class="center">
|
||||||
<strong>Eaccelerator is created by the eAccelerator team, <a href="http://eaccelerator.net">http://eaccelerator.net</a></strong><br /><br />
|
<strong>Eaccelerator is created by the eAccelerator team, <a href="http://eaccelerator.net">http://eaccelerator.net</a></strong><br /><br />
|
||||||
</td></tr>
|
</td></tr>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user