Skip to content

Commit

Permalink
Remove deprecated defined() on aggregate
Browse files Browse the repository at this point in the history
from mythconverg_backup.pl with patch from Jerry.  Fixes #11408.
  • Loading branch information
sphery committed Jun 18, 2013
1 parent 3c8f209 commit e917ec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/programs/scripts/database/mythconverg_backup.pl
Expand Up @@ -13,7 +13,7 @@

# Script info
$NAME = 'MythTV Database Backup Script';
$VERSION = '1.0.11';
$VERSION = '1.0.12';

# Some variables we'll use here
our ($username, $homedir, $mythconfdir, $database_information_file);
Expand Down Expand Up @@ -1067,7 +1067,7 @@
my $command = shift;
my $allow_untaint = 0;
# Only allow directories from @d_allowed_paths that exist in the PATH
if (!defined(@allowed_paths))
unless (@allowed_paths)
{
foreach my $path (split(/:/, $old_env_path))
{
Expand Down

0 comments on commit e917ec3

Please sign in to comment.