diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-02-27 17:37:10 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-02-27 17:37:10 +0000 |
commit | ca540ce7bc5606cb9c52b0777868bc0e93960fdc (patch) | |
tree | 4a730acf9d856593239662e3b6f6da6437169e1a /admin | |
parent | b037ef4bab12ddb3a884beb312180a9fd811e01c (diff) |
comments on echo
git-svn-id: http://piwigo.org/svn/branches/release-1_3@377 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin')
-rw-r--r-- | admin/update.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/update.php b/admin/update.php index 7ec873ac3..20965598a 100644 --- a/admin/update.php +++ b/admin/update.php @@ -700,7 +700,7 @@ else $categories = insert_local_category( 'NULL' ); } $end = get_moment(); - echo get_elapsed_time( $start, $end ).' for update <br />'; +// echo get_elapsed_time( $start, $end ).' for update <br />'; $vtp->setVar( $sub, 'local_update.categories', $categories ); $vtp->setVar( $sub, 'local_update.count_new', $count_new ); $vtp->setVar( $sub, 'local_update.count_deleted', $count_deleted ); @@ -716,7 +716,7 @@ if ( @is_file( './listing.xml' ) ) $start = get_moment(); remote_images(); $end = get_moment(); - echo get_elapsed_time( $start, $end ).' for remote_images<br />'; +// echo get_elapsed_time( $start, $end ).' for remote_images<br />'; $vtp->setVar( $sub, 'remote_update.count_new', $count_new ); $vtp->setVar( $sub, 'remote_update.count_deleted', $count_deleted ); @@ -731,12 +731,12 @@ if ( isset( $_GET['update'] ) $start = get_moment(); update_category( 'all' ); $end = get_moment(); - echo get_elapsed_time( $start, $end ).' for update_category( all )<br />'; +// echo get_elapsed_time( $start, $end ).' for update_category( all )<br />'; $start = get_moment(); synchronize_all_users(); $end = get_moment(); - echo get_elapsed_time( $start, $end ).' for synchronize_all_users<br />'; +// echo get_elapsed_time( $start, $end ).' for synchronize_all_users<br />'; } //----------------------------------------------------------- sending html code $vtp->Parse( $handle , 'sub', $sub ); |