Revision: 2227
          http://mrbs.svn.sourceforge.net/mrbs/?rev=2227&view=rev
Author:   cimorrison
Date:     2011-12-31 13:41:12 +0000 (Sat, 31 Dec 2011)
Log Message:
-----------
Eliminated undefined index messages

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

Modified: mrbs/trunk/web/edit_entry_handler.php
===================================================================
--- mrbs/trunk/web/edit_entry_handler.php       2011-12-31 13:35:15 UTC (rev 
2226)
+++ mrbs/trunk/web/edit_entry_handler.php       2011-12-31 13:41:12 UTC (rev 
2227)
@@ -151,7 +151,10 @@
           $end_seconds = $old_booking['end_time'] - mktime(0, 0, 0, 
$end_month, $end_day, $end_year);
           break;
         default:
-          $$var = $old_booking[$var];
+          if (array_key_exists($var, $old_booking))
+          {
+            $$var = $old_booking[$var];
+          }
           break;
       }
     }

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex
infrastructure or vast IT resources to deliver seamless, secure access to
virtual desktops. With this all-in-one solution, easily deploy virtual 
desktops for less than the cost of PCs and save 60% on VDI infrastructure 
costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits

Reply via email to