*** empty log message ***
This commit is contained in:
parent
0e06ab3d53
commit
8597dddda5
8 changed files with 11 additions and 11 deletions
BIN
livesupport/modules/htmlUI/var/html/img/group.gif
Executable file
BIN
livesupport/modules/htmlUI/var/html/img/group.gif
Executable file
Binary file not shown.
After Width: | Height: | Size: 784 B |
BIN
livesupport/modules/htmlUI/var/html/img/user.gif
Executable file
BIN
livesupport/modules/htmlUI/var/html/img/user.gif
Executable file
Binary file not shown.
After Width: | Height: | Size: 401 B |
|
@ -155,7 +155,7 @@
|
|||
</item>
|
||||
<item>
|
||||
<key>Playlist "$1" activated</key>
|
||||
<value>Playlist "$1" activated.</value>
|
||||
<value>Playlist "$1" opened.</value>
|
||||
</item>
|
||||
<item>
|
||||
<key>Playlist "$1" released</key>
|
||||
|
@ -223,7 +223,7 @@
|
|||
</item>
|
||||
<item>
|
||||
<key>You have an Playlist already activated, first close it</key>
|
||||
<value>You have an Playlist already activated, first close it.</value>
|
||||
<value>You have already an open Playlist, first close it.</value>
|
||||
</item>
|
||||
<item>
|
||||
<key>Access</key>
|
||||
|
|
|
@ -25,7 +25,7 @@ onClick="return contextmenu('{$i.id}'
|
|||
{if $_PL_activeId == $i.id}
|
||||
, 'PL.release'
|
||||
{elseif $PL->isAvailable($i.id) == true}
|
||||
, 'PL.addItem', 'delete'
|
||||
, 'PL.addItem', 'PL.activate', 'delete'
|
||||
{/if}
|
||||
{elseif $PL->isAvailable($i.id) == true}
|
||||
, 'PL.activate', 'PL.create', 'delete'
|
||||
|
|
|
@ -27,9 +27,9 @@
|
|||
<td style="border: 0; text-align: center"
|
||||
onClick="return contextmenu('login={urlencode str=$i.login}&gname={urlencode str=$_gname}', 'SUBJECTS.removeSubjFromGr')">
|
||||
{if $i.type|lower == 'u'}
|
||||
<img src="img/user.png" border="0" alt="User" />
|
||||
<img src="img/user.gif" border="0" alt="User" />
|
||||
{else}
|
||||
<img src="img/group.png" border="0" alt="Group" />
|
||||
<img src="img/group.gif" border="0" alt="Group" />
|
||||
{/if}
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -74,9 +74,9 @@
|
|||
<td style="border: 0; text-align: center"
|
||||
onClick="return contextmenu('login={urlencode str=$i.login}&gname={urlencode str=$_gname}', 'SUBJECTS.removeSubjFromGr')">
|
||||
{if $i.type|lower == 'u'}
|
||||
<img src="img/user.png" border="0" alt="User" />
|
||||
<img src="img/user.gif" border="0" alt="User" />
|
||||
{else}
|
||||
<img src="img/group.png" border="0" alt="Group" />
|
||||
<img src="img/group.gif" border="0" alt="Group" />
|
||||
{/if}
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -97,6 +97,6 @@
|
|||
<!-- end add group member -->
|
||||
</div>
|
||||
|
||||
<input type="button" class="button" value="##Close##" onClick="location.href='{$UI_BROWSER}?act=SUBJECTS'">
|
||||
<input type="button" class="button_wide" value="##Back to overview##" onClick="location.href='{$UI_BROWSER}?act=SUBJECTS'">
|
||||
</div>
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
-
|
||||
{/if}
|
||||
</td>
|
||||
<td style="border: 0; text-align: center;"><img src="img/{$_type}.png" border="0" alt="{$_type|capitalize}" /></td>
|
||||
<td style="border: 0; text-align: center;"><img src="img/{$_type}.gif" border="0" alt="{$_type|capitalize}" /></td>
|
||||
|
||||
</tr>
|
||||
{/foreach}
|
||||
|
|
|
@ -48,7 +48,7 @@ class uiPlaylist
|
|||
# store access token to ls_pref abd session
|
||||
# load PL into session
|
||||
if ($this->token) {
|
||||
if (UI_WARNING) $this->Base->_retMsg('You have an Playlist already activated, first close it');
|
||||
if (UI_WARNING) $this->Base->_retMsg('You have an Playlist already activated, first close it');
|
||||
return FALSE;
|
||||
}
|
||||
if(($userid = $this->Base->gb->playlistIsAvailable($plid, $this->Base->sessid)) !== TRUE) {
|
||||
|
|
|
@ -103,7 +103,7 @@ class uiScheduler extends uiCalendar
|
|||
|
||||
## search for previous entry
|
||||
if (count($week[$this->scheduleAt['day']]) >= 1) {
|
||||
foreach (array_reverse($week[$this->scheduleAt['day']]) as $entry) {
|
||||
foreach (array_reverse($week[$this->scheduleAt['day']]) as $entry) {
|
||||
if (strtotime($entry[0]['end']) <= strtotime($this->scheduleAt['hour'].':'.$this->scheduleAt['minute'].':'.$this->scheduleAt['second'])) {
|
||||
$prev = TRUE;
|
||||
list ($this->schedulePrev['hour'], $this->schedulePrev['minute'], $this->schedulePrev['second'])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue