*** empty log message ***
This commit is contained in:
parent
8ae2b9f8b9
commit
dd9ef533fd
4 changed files with 3 additions and 4 deletions
|
@ -35,7 +35,7 @@ $ui_fmask = array(
|
||||||
'isPref' => TRUE,
|
'isPref' => TRUE,
|
||||||
'type' => 'text',
|
'type' => 'text',
|
||||||
'label' => 'Station Logo path',
|
'label' => 'Station Logo path',
|
||||||
'default' => 'img/logo.jpg',
|
'default' => 'img/stationlogo.gif',
|
||||||
'required' => TRUE
|
'required' => TRUE
|
||||||
),
|
),
|
||||||
array(
|
array(
|
BIN
livesupport/modules/htmlUI/var/html/img/stationlogo.gif
Normal file
BIN
livesupport/modules/htmlUI/var/html/img/stationlogo.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
|
@ -3,7 +3,7 @@ define('UI_VERBOSE', FALSE);
|
||||||
define('UI_WARNING', TRUE);
|
define('UI_WARNING', TRUE);
|
||||||
define('UI_ERROR', TRUE);
|
define('UI_ERROR', TRUE);
|
||||||
#define('UI_TIMEZONE', ' +100');
|
#define('UI_TIMEZONE', ' +100');
|
||||||
define('UI_TIMEZONEOFFSET', date('Z'));
|
define('UI_TIMEZONEOFFSET', date('Z'));
|
||||||
|
|
||||||
define('UI_HANDLER', 'ui_handler.php');
|
define('UI_HANDLER', 'ui_handler.php');
|
||||||
define('UI_BROWSER', 'ui_browser.php');
|
define('UI_BROWSER', 'ui_browser.php');
|
||||||
|
@ -61,7 +61,7 @@ require_once dirname(__FILE__).'/ui_playlist.class.php';
|
||||||
require_once dirname(__FILE__).'/ui_search.class.php';
|
require_once dirname(__FILE__).'/ui_search.class.php';
|
||||||
require_once dirname(__FILE__).'/ui_browse.class.php';
|
require_once dirname(__FILE__).'/ui_browse.class.php';
|
||||||
require_once dirname(__FILE__).'/../../storageServer/var/GreenBox.php';
|
require_once dirname(__FILE__).'/../../storageServer/var/GreenBox.php';
|
||||||
require_once dirname(__FILE__).'/formmask/general.inc.php';
|
require_once dirname(__FILE__).'/formmask/generic.inc.php';
|
||||||
require_once dirname(__FILE__).'/ui_calendar.class.php';
|
require_once dirname(__FILE__).'/ui_calendar.class.php';
|
||||||
require_once dirname(__FILE__).'/ui_scheduler.class.php';
|
require_once dirname(__FILE__).'/ui_scheduler.class.php';
|
||||||
|
|
||||||
|
|
|
@ -641,7 +641,6 @@ class uiHandler extends uiBase {
|
||||||
$this->gb->saveGroupPref($this->sessid, 'StationPrefs', $val['element'], $formdata[$val['element']]);
|
$this->gb->saveGroupPref($this->sessid, 'StationPrefs', $val['element'], $formdata[$val['element']]);
|
||||||
else
|
else
|
||||||
$this->gb->delGroupPref($this->sessid, 'StationPrefs', $val['element']);
|
$this->gb->delGroupPref($this->sessid, 'StationPrefs', $val['element']);
|
||||||
#$this->STATIONPREFS[$val['element']] = is_string($this->gb->loadGroupPref(NULL, 'StationPrefs', $val['element'])) ? $this->gb->loadGroupPref($this->sessid, 'StationPrefs', $val['element']) : NULL;
|
|
||||||
}
|
}
|
||||||
if ($val['type'] == 'file' && $formdata[$val['element']]['name']) {
|
if ($val['type'] == 'file' && $formdata[$val['element']]['name']) {
|
||||||
if (FALSE === @move_uploaded_file($formdata[$val['element']]['tmp_name'], $this->gb->loadGroupPref($this->sessid, 'StationPrefs', 'stationLogoPath')))
|
if (FALSE === @move_uploaded_file($formdata[$val['element']]['tmp_name'], $this->gb->loadGroupPref($this->sessid, 'StationPrefs', 'stationLogoPath')))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue