aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2003-09-16 18:53:52 +0000
committerz0rglub <z0rglub@piwigo.org>2003-09-16 18:53:52 +0000
commit64fd038b76391ef09e6b56013f328e387223f4a0 (patch)
tree2105856f5532c897cf39c938ce9077381ef5fb77
parent335f56c4cde0b9d6f5e0c08a26ce1615d56cd89e (diff)
The execution of the query to insert distant picture had vanished !
git-svn-id: http://piwigo.org/svn/trunk@124 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/update.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/admin/update.php b/admin/update.php
index 1a042256c..493b9d563 100644
--- a/admin/update.php
+++ b/admin/update.php
@@ -479,6 +479,7 @@ function insert_remote_image( $xml_dir, $category_id )
$query.= ",'".$height."'";
$query.= ')';
$query.= ';';
+ mysql_query( $query );
// retrieving the id of newly inserted picture
$query = 'SELECT id';
$query.= ' FROM '.PREFIX_TABLE.'images';