diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2006-11-02 11:46:31 +0100 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2006-11-02 11:46:31 +0100 |
commit | a78c3948944974fc7212a2e6c38320ac4889c0d1 (patch) | |
tree | 7bb2583c8c49468bd7e9b35ee0f05b3644569bbe /vdradmind.pl | |
parent | 24b39843b935f8a37b2d9dc909a530b771a61c1f (diff) | |
download | vdradmin-am-3.5.0rc.tar.gz vdradmin-am-3.5.0rc.tar.bz2 |
2006-11-02: 3.5.0rcv3.5.0rc
- Minor bugfixes.
Diffstat (limited to 'vdradmind.pl')
-rwxr-xr-x | vdradmind.pl | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/vdradmind.pl b/vdradmind.pl index d4d99df..0d6c028 100755 --- a/vdradmind.pl +++ b/vdradmind.pl @@ -28,7 +28,7 @@ require 5.004; -my $VERSION = "3.5.0beta"; +my $VERSION = "3.5.0rc"; my $BASENAME; my $EXENAME; @@ -453,7 +453,7 @@ my @GUEST_USER = qw(prog_detail prog_list prog_list2 prog_timeline timer_list at prog_summary rec_list rec_detail show_top toolbar show_help about); my @TRUSTED_USER = ( @GUEST_USER, qw(at_timer_edit at_timer_new at_timer_save at_timer_test at_timer_delete - epgsearch_edit epgsearch_save epgsearch_delete epgsearch_toggle timer_new_form timer_add timer_delete timer_toggle rec_delete rec_rename rec_edit + epgsearch_upds epgsearch_edit epgsearch_save epgsearch_delete epgsearch_toggle timer_new_form timer_add timer_delete timer_toggle rec_delete rec_rename rec_edit config prog_switch rc_show rc_hitk grab_picture at_timer_toggle tv_show tv_switch live_stream rec_stream rec_play rec_cut force_update vdr_cmds) ); @@ -547,6 +547,7 @@ while (true) { $real_aktion = "epgsearch_list" if ($q->param("execute")); $real_aktion = "epgsearch_list" if ($q->param("favorites")); $real_aktion = "epgsearch_list" if ($q->param("exit")); + $real_aktion = "epgsearch_upds" if ($q->param("upds")); } my @ALLOWED_FUNCTIONS; @@ -2510,6 +2511,11 @@ sub epgsearch_getSettings { } } +sub epgsearch_upds { + SendCMD("plug epgsearch upds osd"); + return (headerForward("$MyURL?aktion=epgsearch_list")); +} + ############################################################################# # regulary timers ############################################################################# @@ -2940,10 +2946,10 @@ sub ValidConfig { # User doesn't want AutoTimer $FEATURES{AUTOTIMER} = 0; } else { - # No decition made yet + # No decision made yet if (-s $AT_FILENAME && $CONFIG{AT_FUNC}) { $FEATURES{AUTOTIMER} = 1; - $CONFIG{AT_OFFER} = 2; + $CONFIG{AT_OFFER} = 0; } else { $CONFIG{AT_FUNC} = 0; $FEATURES{AUTOTIMER} = 0; @@ -5259,9 +5265,6 @@ sub rec_cut { # configuration ############################################################################# sub config { - my $active_tab = $q->param("new_tab"); - $active_tab = 0 unless($active_tab); - sub ApplyConfig { my $old_lang = $CONFIG{LANG}; my $old_epgprune = $CONFIG{EPG_PRUNE}; @@ -5402,7 +5405,6 @@ sub config { LOGINPAGES => \@loginpages, SKINLIST => \@skinlist, MY_LOCALES => \@my_locales, - active_tab => $active_tab, url => $MyURL, help_url => HelpURL("config") }; |