From: Juliette W. <jv...@us...> - 2005-06-14 14:15:15
|
Update of /cvsroot/stack/stack-1-0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23181 Modified Files: Tag: frontend_dev documentation.php Log Message: Fixed warning. Index: documentation.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/documentation.php,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -C2 -d -r1.2.2.1 -r1.2.2.2 *** documentation.php 13 Jun 2005 13:04:05 -0000 1.2.2.1 --- documentation.php 14 Jun 2005 14:15:07 -0000 1.2.2.2 *************** *** 41,45 **** } else if ('functions' == $action) { // Documentation on Maxima Functions include($stack_root.'/maximadocs/functions.php'); ! } else { // Other documentation include($stack_root."/doc/{$action}.php"); } --- 41,45 ---- } else if ('functions' == $action) { // Documentation on Maxima Functions include($stack_root.'/maximadocs/functions.php'); ! } else if ('' != $action) { // Other documentation include($stack_root."/doc/{$action}.php"); } |