diff options
-rw-r--r-- | admin/update.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/update.php b/admin/update.php index 4e13e466d..66faa9ec6 100644 --- a/admin/update.php +++ b/admin/update.php @@ -379,7 +379,7 @@ function remote_images() global $conf, $lang, $vtp, $sub; // 1. is there a file listing.xml ? - if ( !( $xml_content = getXmlCode( 'listing.xml' ) ) ) + if ( !( $xml_content = getXmlCode( './admin/listing.xml' ) ) ) { return false; } @@ -707,7 +707,7 @@ else $vtp->closeSession( $sub, 'local_update' ); } //------------------------------------------------- remote update : listing.xml -if ( @is_file( './listing.xml' ) ) +if ( @is_file( './admin/listing.xml' ) ) { $count_new = 0; $count_deleted = 0; |