summaryrefslogtreecommitdiff
path: root/html
diff options
context:
space:
mode:
authorAndreas Brachold <vdr07@deltab.de>2008-01-31 18:09:08 +0000
committerAndreas Brachold <vdr07@deltab.de>2008-01-31 18:09:08 +0000
commit2e1d5ac4ff73ca1847bf7d1dcfa1044ea2f4a4a4 (patch)
tree043bc3e22296c9b3494a2420d6cb9b0b7b1419a6 /html
parentb04acdc9bdf9535ec0d6e6e755aa581127787d55 (diff)
downloadxxv-2e1d5ac4ff73ca1847bf7d1dcfa1044ea2f4a4a4.tar.gz
xxv-2e1d5ac4ff73ca1847bf7d1dcfa1044ea2f4a4a4.tar.bz2
* Update CHANGELOG
* Backport fixes to XXV-1.0.2 * Remove query of revision by svnversion (Use maximum of modul version) * TIMERS: Drop used function getEvents * CHANNELS: Don't redirect if deletion of channel failed * widget/list: avoid theoretical wrong item selection * popularity: change layout of database table for smaller memory using
Diffstat (limited to 'html')
-rw-r--r--html/widgets/list.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/widgets/list.tmpl b/html/widgets/list.tmpl
index ca482c8..a4bdcf2 100644
--- a/html/widgets/list.tmpl
+++ b/html/widgets/list.tmpl
@@ -19,12 +19,12 @@
<?% sel = '' %?>
<?% dis = '' %?>
<?% FOREACH valch = values %?>
- <?% IF (valch == l.1 || valch == l.0) %?>
+ <?% IF valch == l.1 %?>
<?% sel = ' selected="selected"';LAST %?>
<?% END %?>
<?% END %?>
<?% FOREACH valch = data.disabled %?>
- <?% IF (valch == l.1 || valch == l.0) %?>
+ <?% IF valch == l.1 %?>
<?% dis = ' disabled="disabled"';LAST %?>
<?% END %?>
<?% END %?>