Index: trunk/admin/help/help.php
===================================================================
diff -u -r41 -r49
--- trunk/admin/help/help.php (.../help.php) (revision 41)
+++ trunk/admin/help/help.php (.../help.php) (revision 49)
@@ -85,8 +85,11 @@
$envar = BuildEnv();
int_help_header();
-$topic_path = $baseURL.$admin.'/help/topics/'.str_replace(':','@',$section).'.txt';
+$section = explode(':', $section);
+if($section[0] == 'in-portal') $section[0] = 'kernel';
+$topic_path = $baseURL.$section[0].'/'.$admin.'/include/help/'.$section[1].'.txt';
+
// for debugging: save new help content
if( GetVar('action') == 'save_help' )
{
@@ -107,7 +110,7 @@
if( file_exists($topic_path) )
echo $help_data;
else
- echo defined('DEBUG_HELP') ? 'missing section help file '.str_replace(':','@',$section).'.txt
' : admin_language('la_help_in_progress');
+ echo defined('DEBUG_HELP') ? 'missing section help file '.$section[1].'.txt
' : admin_language('la_help_in_progress');
?>
@@ -118,7 +121,7 @@