Revert r45821, r45830, r45831 and r45835 all in order to revert r45819, per discussio...
[lhc/web/wiklou.git] / maintenance / counter.php
1 <?php
2 /**
3 * Helper file for update.php
4 *
5 * @file
6 * @ingroup Maintenance
7 */
8
9 function print_c($last, $current) {
10 echo str_repeat( chr(8), strlen( $last ) ) . $current;
11 }
12