From 1dc5a690ace84cabe09534b15b1994bdf48736ec Mon Sep 17 00:00:00 2001 From: marostegui Date: Mon, 22 Jun 2009 09:46:35 +0000 Subject: [PATCH] 2009-06-22 Manuel Arostegui * include/functions_filemanager.php: Fixed ugly warning, the languanges path was incorrect. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1756 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/include/functions_filemanager.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 131afd60ee..9bc6c2bda9 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2009-06-22 Manuel Arostegui + + * include/functions_filemanager.php: Fixed ugly warning, the + languanges path was incorrect. + 2009-06-22 Miguel de Dios * godmode/admin_access_logs.php: Fix fall the table of logs to diff --git a/pandora_console/include/functions_filemanager.php b/pandora_console/include/functions_filemanager.php index 40ca0a40e8..e96cc5d81f 100644 --- a/pandora_console/include/functions_filemanager.php +++ b/pandora_console/include/functions_filemanager.php @@ -108,7 +108,7 @@ function get_file_manager_available_directories () { $dirs = array (); $dirs['images'] = "images"; $dirs['attachment'] = "attachment"; - $dirs['languages'] = "languages"; + $dirs['languages'] = "include/languages"; foreach ($dirs as $dirname) { $dirpath = realpath ($config['homedir'].'/'.$dirname);