2010-05-17 Sergio Martin <sergio.martin@artica.es>
* operation/extensions.php godmode/extensions.php: Fixed the undefined variable display on extensions sections for bug 2989967 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2735 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
3257c25a01
commit
804158a672
|
@ -1,3 +1,10 @@
|
|||
2010-05-17 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* operation/extensions.php
|
||||
godmode/extensions.php: Fixed the undefined
|
||||
variable display on extensions sections
|
||||
for bug 2989967
|
||||
|
||||
2010-05-17 Junichi Satoh <junichi@rworks.jp>
|
||||
|
||||
* include/gettext.php: Changed the judgment method for 64bit systems.
|
||||
|
|
|
@ -29,7 +29,7 @@ if (sizeof ($config['extensions']) == 0) {
|
|||
}
|
||||
|
||||
// Header
|
||||
print_page_header (__('Extensions'). " » ". __('Defined extensions'). " - ".$report["name"], "images/extensions.png", false, "", true, "" );
|
||||
print_page_header (__('Extensions'). " » ". __('Defined extensions'), "images/extensions.png", false, "", true, "" );
|
||||
|
||||
$delete = get_parameter ("delete", "");
|
||||
$name = get_parameter ("name", "");
|
||||
|
|
|
@ -23,7 +23,7 @@ if (! give_acl ($config['id_user'], 0, "AR")) {
|
|||
}
|
||||
|
||||
// Header
|
||||
print_page_header (__('Extensions'). " » ". __('Defined extensions'). " - ".$report["name"], "images/extensions.png", false, "", false, "" );
|
||||
print_page_header (__('Extensions'). " » ". __('Defined extensions'), "images/extensions.png", false, "", false, "" );
|
||||
|
||||
if (sizeof ($config['extensions']) == 0) {
|
||||
echo '<h3>'.__('There are no extensions defined').'</h3>';
|
||||
|
|
Loading…
Reference in New Issue