Revision: 2946
          https://sourceforge.net/p/mrbs/code/2946/
Author:   cimorrison
Date:     2015-01-15 09:34:48 +0000 (Thu, 15 Jan 2015)
Log Message:
-----------
Fixed bug causing an HTML5 validation error when 
$auth['only_admin_can_select_multiroom'] = TRUE;

Modified Paths:
--------------
    mrbs/trunk/web/edit_entry.php

Modified: mrbs/trunk/web/edit_entry.php
===================================================================
--- mrbs/trunk/web/edit_entry.php       2015-01-13 17:26:37 UTC (rev 2945)
+++ mrbs/trunk/web/edit_entry.php       2015-01-15 09:34:48 UTC (rev 2946)
@@ -416,8 +416,8 @@
                   'options'     => $all_rooms[$area_id],
                   'force_assoc' => TRUE,
                   'value'       => $selected_rooms,
-                  'multiple'    => $multiroom_allowed,
-                  'mandatory'   => TRUE,
+                  'multiple'    => $multiroom_allowed,  // If multiple is not 
set then mandatory (HTML "required")
+                  'mandatory'   => $multiroom_allowed,  // is unnecessary and 
also causes an HTML5 validation error
                   'disabled'    => $disabled,
                   'attributes'  => array('size="5"'));
   generate_select($params);
------------------------------------------------------------------------------
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits

Reply via email to