We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e23793 commit 217f631Copy full SHA for 217f631
1 file changed
index.php
@@ -87,9 +87,9 @@ static function LoadDownloader()
87
$joblist=json_decode(stripslashes($_COOKIE['jobs']),true);
88
foreach($joblist as $job)
89
{
90
- if(file_exists(self::$jobpath."/".$job.".job"))
+ if(file_exists(self::$jobpath."/".basename($job).".job"))
91
92
- self::$DOWNLOADER[]=json_decode(file_get_contents(self::$jobpath."/".$job.".job"),true);
+ self::$DOWNLOADER[]=json_decode(file_get_contents(self::$jobpath."/".basename($job).".job"),true);
93
}
94
95
0 commit comments