r22501 - htdocs/branches/beta - Fix another syntax error

Geert Janssens gjanssens at code.gnucash.org
Fri Nov 2 04:56:03 EDT 2012


Author: gjanssens
Date: 2012-11-02 04:56:02 -0400 (Fri, 02 Nov 2012)
New Revision: 22501
Trac: http://svn.gnucash.org/trac/changeset/22501

Modified:
   htdocs/branches/beta/viewdoc.phtml
Log:
Fix another syntax error

Modified: htdocs/branches/beta/viewdoc.phtml
===================================================================
--- htdocs/branches/beta/viewdoc.phtml	2012-11-01 21:49:01 UTC (rev 22500)
+++ htdocs/branches/beta/viewdoc.phtml	2012-11-02 08:56:02 UTC (rev 22501)
@@ -35,7 +35,7 @@
 $req_lang_ok = true;
 
 # Parse requested document
-if (isset ('doc', $_GET)) {
+if (isset ($_GET["doc"])) {
   switch ($_GET["doc"]) {
     case "help":
         $showdoc = $helpdoc;
@@ -50,7 +50,7 @@
 }
 
 # Parse requested version
-if (isset ('rev', $_GET)) {
+if (isset ($_GET["rev"])) {
   switch ($_GET["rev"]) {
     case "1.8":
         $showrev = "1.8";



More information about the gnucash-changes mailing list