[Openvas-commits] r9363 - in trunk/gsa: . src/html

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Mon Nov 8 17:20:09 CET 2010


Author: mattm
Date: 2010-11-08 17:20:08 +0100 (Mon, 08 Nov 2010)
New Revision: 9363

Modified:
   trunk/gsa/ChangeLog
   trunk/gsa/src/html/omp.xsl
Log:
	* src/html/omp.xsl (new_task): Skip the empty config.

Modified: trunk/gsa/ChangeLog
===================================================================
--- trunk/gsa/ChangeLog	2010-11-08 16:01:57 UTC (rev 9362)
+++ trunk/gsa/ChangeLog	2010-11-08 16:20:08 UTC (rev 9363)
@@ -1,5 +1,9 @@
 2010-11-08  Matthew Mundell <matthew.mundell at greenbone.net>
 
+	* src/html/omp.xsl (new_task): Skip the empty config.
+
+2010-11-08  Matthew Mundell <matthew.mundell at greenbone.net>
+
 	* src/html/omp.xsl (preferences): Set action column width.
 
 2010-11-02  Matthew Mundell <matthew.mundell at greenbone.net>

Modified: trunk/gsa/src/html/omp.xsl
===================================================================
--- trunk/gsa/src/html/omp.xsl	2010-11-08 16:01:57 UTC (rev 9362)
+++ trunk/gsa/src/html/omp.xsl	2010-11-08 16:20:08 UTC (rev 9363)
@@ -8719,8 +8719,10 @@
           <td valign="top">Scan Config</td>
           <td>
             <select name="config_id">
-              <xsl:apply-templates select="get_configs_response/config"
-                                   mode="newtask"/>
+              <!-- Skip the "empty" config. -->
+              <xsl:apply-templates
+                select="get_configs_response/config[@id!='085569ce-73ed-11df-83c3-002264764cea']"
+                mode="newtask"/>
             </select>
           </td>
         </tr>



More information about the Openvas-commits mailing list