[pLog-svn] r4748 - plog/trunk/templates/admin

oscar at devel.lifetype.net oscar at devel.lifetype.net
Sat Feb 17 17:47:05 EST 2007


Author: oscar
Date: 2007-02-17 17:47:05 -0500 (Sat, 17 Feb 2007)
New Revision: 4748

Modified:
   plog/trunk/templates/admin/editposts.template
   plog/trunk/templates/admin/resources.template
Log:
Make sure the option "none" also appears in the drop-down list for bulk updating locations in resources and posts.

Modified: plog/trunk/templates/admin/editposts.template
===================================================================
--- plog/trunk/templates/admin/editposts.template	2007-02-17 22:38:58 UTC (rev 4747)
+++ plog/trunk/templates/admin/editposts.template	2007-02-17 22:47:05 UTC (rev 4748)
@@ -234,7 +234,8 @@
 					{if $location_data_enabled}
                     <label for="location">{$locale->tr("location")}</label>
                     <select name="postLocation" id="postLocation">
-                     <option value="-1" >-{$locale->tr("select")}-</option>
+                     <option value="-1">-{$locale->tr("select")}-</option>
+                     <option value="0">{$locale->tr("none")}</option>
 					 {foreach from=$locations item=location}
 					   <option value="{$location->getId()}">{$location->getDescription()}</option>
 					 {/foreach}

Modified: plog/trunk/templates/admin/resources.template
===================================================================
--- plog/trunk/templates/admin/resources.template	2007-02-17 22:38:58 UTC (rev 4747)
+++ plog/trunk/templates/admin/resources.template	2007-02-17 22:47:05 UTC (rev 4748)
@@ -188,7 +188,8 @@
 		<!-- location mass-edit -->
       <label for="location">{$locale->tr("location")}</label>
       <select name="locationId" id="resourceLocation">
-       <option value="-1" >-{$locale->tr("select")}-</option>
+       <option value="-1">-{$locale->tr("select")}-</option>
+       <option value="0">{$locale->tr("none")}</option>
 		 {foreach from=$locations item=location}
 		   <option value="{$location->getId()}">{$location->getDescription()}</option>
 		 {/foreach}



More information about the pLog-svn mailing list