From 504089acd049f611c356c55f5b20d20f241d2933 Mon Sep 17 00:00:00 2001 From: sebastian Date: Wed, 2 Mar 2005 19:31:22 +0000 Subject: [PATCH] *** empty log message *** --- livesupport/modules/htmlUI/var/ui_base.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/livesupport/modules/htmlUI/var/ui_base.inc.php b/livesupport/modules/htmlUI/var/ui_base.inc.php index 4fd5f978e..b6ec8054e 100644 --- a/livesupport/modules/htmlUI/var/ui_base.inc.php +++ b/livesupport/modules/htmlUI/var/ui_base.inc.php @@ -118,18 +118,18 @@ class uiBase if ($val['isPref']) { if (is_string($setting = $this->gb->loadGroupPref(NULL, 'StationPrefs', $val['element']))) { $this->STATIONPREFS[$val['element']] = $setting; - } else { + } elseif ($val['required']){ $miss = TRUE; } } } if (!$this->STATIONPREFS['stationMaxfilesize']) $this->STATIONPREFS['stationMaxfilesize'] = strtr(ini_get('upload_max_filesize'), array('M'=>'000000', 'k'=>'000')); - /* + if ($miss && $this->login) { $this->_retMsg('Note: Station Preferences not setup.'); } - */ + } }