diff --git a/archive-sources/pr-auto-timer/pr-auto-timer b/archive-sources/pr-auto-timer/pr-auto-timer index 2a201c3e..76a12b7e 100755 --- a/archive-sources/pr-auto-timer/pr-auto-timer +++ b/archive-sources/pr-auto-timer/pr-auto-timer @@ -26,10 +26,13 @@ # Timer rules: /var/tuxbox/config/pr-auto-timer.rules # Neutrino plugin: /lib/tuxbox/plugins/pr-auto-timer.{sh,cfg} -VERSION=0.41 +VERSION=0.41a # Changelog: # +# 0.41a by vanhofen (NI-Team) +# -fix "minor format changes in logging" from previous version +# # 0.41 by vanhofen (NI-Team) # -fix search-code in find_show_by_regex() # -minor format changes in logging @@ -571,8 +574,13 @@ scale2res() ####################################################################################### #BEGIN SECTION "Initialization" -init_log() { - # Initialize the logfile, so we can write to it ... +init_config() { + #Parse config file (default: /var/tuxbox/config/pr-auto-timer.conf) + if [ -e $CONFIG_FILE ]; then + source $CONFIG_FILE 2>/dev/null + fi + + # Initialize the logfile first, so we can write to it ... if [ ! -d "${LOG_FILE%/*}" ]; then case $LOG_FILE in [oO][fF][fF]) @@ -588,13 +596,6 @@ init_log() { # Create logfile touch $LOG_FILE fi -} - -init_config() { - #Parse config file (default: /var/tuxbox/config/pr-auto-timer.conf) - if [ -e $CONFIG_FILE ]; then - source $CONFIG_FILE 2>/dev/null - fi # Check the settings and reset them to default if unset or invalid case $MAX_DIFF_MINS in @@ -2377,16 +2378,13 @@ parse_sky_cinema() { # set the signal handler trap signal_handler INT TERM -# Initialize the logfile first -init_log - -# We happily started ... -log "$ME V$VERSION started." - # Initialize the values from the config, otherwise we cannot log anywhere init_config init_temp +# We happily started ... +log "$ME V$VERSION started." + HISTORY_IDX_TMP_FILE="$temp_dir/history_index" TIMER_IDX_TMP_FILE="$temp_dir/timer_index"