diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-10-30 15:42:29 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-10-30 15:42:29 +0000 |
commit | 7cd9b65e3299fb8bc6a83e65f89fcecca62f3178 (patch) | |
tree | e068090892b16db654a2bf0c2886b65eaf44a14f /admin/admin_upload.php | |
parent | 3730c810f254267ab1fb49f4cad55866e780ad6e (diff) |
- function mysql_query replaced by pwg_query : the same with debugging
features
- by default, DEBUG is set to 0 (off)
git-svn-id: http://piwigo.org/svn/trunk@587 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/admin_upload.php')
-rw-r--r-- | admin/admin_upload.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/admin_upload.php b/admin/admin_upload.php index 28f210989..757f00abe 100644 --- a/admin/admin_upload.php +++ b/admin/admin_upload.php @@ -50,7 +50,7 @@ if (isset($_POST['submit']) || isset($_POST['delete'])) if ($i+1<$nb) $query.=','; } $query.=');'; - mysql_query ($query); + pwg_query ($query); } // Cache management @@ -58,7 +58,7 @@ $query = 'SELECT id, name, uploadable FROM '.CATEGORIES_TABLE; $query.= ' WHERE dir IS NOT NULL'; $query.= ' ORDER BY name ASC'; $query.= ';'; -$result = mysql_query( $query ); +$result = pwg_query( $query ); while ( $row = mysql_fetch_assoc( $result ) ) { if ($row['uploadable'] == 'false') |