List:Commits« Previous MessageNext Message »
From:mcbrown Date:July 28 2008 4:38pm
Subject:svn commit - mysqldoc@docsrva: r11395 - trunk/tools/MySQL/DynXML
View as plain text  
Author: mcbrown
Date: 2008-07-28 18:38:30 +0200 (Mon, 28 Jul 2008)
New Revision: 11395

Log:
Docs Bug #37566



Modified:
   trunk/tools/MySQL/DynXML/Optvar.pm


Modified: trunk/tools/MySQL/DynXML/Optvar.pm
===================================================================
--- trunk/tools/MySQL/DynXML/Optvar.pm	2008-07-28 15:49:18 UTC (rev 11394)
+++ trunk/tools/MySQL/DynXML/Optvar.pm	2008-07-28 16:38:30 UTC (rev 11395)
Changed blocks: 2, Lines Added: 6, Lines Deleted: 2; 1003 bytes

@@ -1188,7 +1188,9 @@
 
     # For the 4.1 manual we dont output scope information, so remove the table header/definition
 
-    if ($options->{version} eq '4.1')
+    if (($options->{version} eq '4.1') &&
+        (exists($options->{selectstatusvar}) &&
+         $options->{selectstatusvar} eq 'yes'))
     {
         $scopetgroupdef = '<tgroup cols="2">';
         $scopecoldef = '';

@@ -1251,7 +1253,9 @@
 
     # For the 4.1 manual we dont output scope information
 
-    if ($options->{version} eq '4.1')
+    if (($options->{version} eq '4.1') &&
+        (exists($options->{selectstatusvar}) &&
+         $options->{selectstatusvar} eq 'yes'))
     {
         print $iodest xml_row(xml_entry($id_text),
                               xml_entry($valuetype));


Thread
svn commit - mysqldoc@docsrva: r11395 - trunk/tools/MySQL/DynXMLmcbrown28 Jul