mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-10 02:33:02 +02:00
- 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
This commit is contained in:
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user