From 903c3defff074d52e4f8e176281f9257270b1331 Mon Sep 17 00:00:00 2001 From: SteveD Date: Fri, 28 Dec 2012 22:21:41 +0000 Subject: [PATCH] Make width of dropdown boxes for entry of hours/minutes more appropriate - should probably use a theme-specific class --- e107_plugins/calendar_menu/ecal_class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_plugins/calendar_menu/ecal_class.php b/e107_plugins/calendar_menu/ecal_class.php index 399205e1a..41689e547 100644 --- a/e107_plugins/calendar_menu/ecal_class.php +++ b/e107_plugins/calendar_menu/ecal_class.php @@ -333,14 +333,14 @@ class ecal_class { if (isset($this->pref['eventpost_fivemins'])) $incval = 5; else $incval = 1; // @TODO: Need to restrict width of select box - $retval = " \n"; for($count = '00'; $count <= '23'; $count++) { $val = sprintf("%02d", $count); $retval .= "\n"; } $retval .= "\n - \n"; for($count = '00'; $count <= '59'; $count+= $incval) { $val = sprintf("%02d", $count);