comments on echo

git-svn-id: http://piwigo.org/svn/branches/release-1_3@377 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
z0rglub
2004-02-27 17:37:10 +00:00
parent b037ef4bab
commit ca540ce7bc
+4 -4
View File
@@ -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 );