Fixed the search of enterprise help files

* general/pandora_help.php: Error fixes on the help file
	search.
This commit is contained in:
Alejandro Gallardo Escobar 2014-09-03 19:40:37 +02:00
parent 72e221113b
commit cb26a1e6c5
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2014-09-03 Alejandro Gallardo <alejandro.gallardo@artica.es>
* general/pandora_help.php: Error fixes on the help file
search.
2014-09-03 Ramon Novoa <rnovoa@artica.es>
* include/help/en/help_alert_macros.php,

View File

@ -49,8 +49,8 @@ $safe_language = safe_url_extraclean ($user_language, "en");
$safe_id = safe_url_extraclean ($id, "");
$files = array ($config["homedir"]."/include/help/".$safe_language."/help_".$safe_id.".php",
$config["homedir"].ENTERPRISE_DIR."/include/help/".$safe_language."/help_".$safe_id.".php",
$config["homedir"].ENTERPRISE_DIR."/include/help/en/help_".$safe_id.".php",
$config["homedir"]."/".ENTERPRISE_DIR."/include/help/".$safe_language."/help_".$safe_id.".php",
$config["homedir"]."/".ENTERPRISE_DIR."/include/help/en/help_".$safe_id.".php",
$config["homedir"]."/include/help/en/help_".$safe_id.".php");
$help_file = '';
foreach ($files as $file) {