Update of /cvsroot/stack/stack-1-0/html
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27355/html
Modified Files:
help_popup.php
Log Message:
Index: help_popup.php
===================================================================
RCS file: /cvsroot/stack/stack-1-0/html/help_popup.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** help_popup.php 29 Aug 2005 18:41:03 -0000 1.7
--- help_popup.php 7 Oct 2005 06:26:38 -0000 1.8
***************
*** 81,85 ****
// This needs to come after 'fact'
! $filename="{$stack_root}/lang/{$lang}/doc/$variable.php";
include($filename);
--- 81,93 ----
// This needs to come after 'fact'
! $fn = $variable;
! switch ($variable) {
! case 'stackQuestionPotResp':
! $fn = 'author_potresp';
! break;
!
! }
!
! $filename="{$stack_root}/lang/{$lang}/doc/$fn.php";
include($filename);
|