diff options
Diffstat (limited to 'vdradmind.pl')
-rwxr-xr-x | vdradmind.pl | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/vdradmind.pl b/vdradmind.pl index f3b24bb..d141251 100755 --- a/vdradmind.pl +++ b/vdradmind.pl @@ -8,16 +8,14 @@ # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # -# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # Or, point your browser to http://www.gnu.org/copyleft/gpl.html # # 08.10.2001 @@ -28,7 +26,7 @@ require 5.004; -my $VERSION = "3.5.1"; +my $VERSION = "3.5.2"; my $BASENAME; my $EXENAME; @@ -2312,10 +2310,10 @@ sub ExtractEpgSearchConf { $timer->{unused}) = split(/:/, $line); #format selected fields - $timer->{time_start} =~ s/(\d\d)(\d\d)/\1:\2/ if($timer->{time_start}); - $timer->{time_stop} =~ s/(\d\d)(\d\d)/\1:\2/ if($timer->{time_stop}); - $timer->{min_duration} =~ s/(\d\d)(\d\d)/\1:\2/ if($timer->{min_duration}); - $timer->{max_duration} =~ s/(\d\d)(\d\d)/\1:\2/ if($timer->{max_duration}); + $timer->{time_start} =~ s/(\d\d)(\d\d)/$1:$2/ if($timer->{time_start}); + $timer->{time_stop} =~ s/(\d\d)(\d\d)/$1:$2/ if($timer->{time_stop}); + $timer->{min_duration} =~ s/(\d\d)(\d\d)/$1:$2/ if($timer->{min_duration}); + $timer->{max_duration} =~ s/(\d\d)(\d\d)/$1:$2/ if($timer->{max_duration}); if ($timer->{has_action}) { if ($timer->{action} == 0) { |