diff options
author | plegall <plg@piwigo.org> | 2004-12-27 14:30:49 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2004-12-27 14:30:49 +0000 |
commit | 7ba15740434b476e8aef0253919f19ba37e07dc7 (patch) | |
tree | 4bba6d6d3e5490189fdc79dee1a51ba6c2e4cb31 /include/functions.inc.php | |
parent | 4c8d18de5b904eddaa900deca20c7d6f7ac928d1 (diff) |
- admin/update : filesystem synchronization process completely
rewritten. How to speed up sync ? by avoiding recursivity !
- admin/update : option to display verbose information details
- admin/update : option to simulate only. No database insert, delete or
update will be made
- bug fixed : in admin/cat_list, if you delete a virtual category, you may
create a gap in the rank list. This gap will generate errors when trying
to move a category on this gap. Fixed by calling ordering and
update_global_rank at category deletion.
- admin/cat_list, only one query to insert a new virtual category (no need
of a second query to update uppercats and global_rank)
- for a given category, even if empty, the representing element must not be
the one of a forbidden category for the current user
- generation time optionnaly displayed on the bottom of each page becomes
more price : number of SQL queries and SQL time added.
git-svn-id: http://piwigo.org/svn/trunk@659 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions.inc.php | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php index 915a1b6b6..adbbce358 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -461,24 +461,23 @@ function pwg_write_debug() function pwg_query($query) { - global $conf; + global $conf,$count_queries,$queries_time; $start = get_moment(); $result = mysql_query($query); - + + $time = get_moment() - $start; + $count_queries++; + $queries_time+= $time; + if ($conf['show_queries']) { - global $count_queries,$queries_time; - - $time = get_moment() - $start; - $count_queries++; - $output = ''; $output.= '<pre>['.$count_queries.'] '."\n".$query; - $queries_time+= $time; $output.= "\n".'(this query time : '.number_format( $time, 3, '.', ' ').' s)</b>'; $output.= "\n".'(total SQL time : '.number_format( $queries_time, 3, '.', ' ').' s)'; $output.= '</pre>'; + echo $output; } |