summaryrefslogtreecommitdiff
path: root/maintenance/counter.php
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/counter.php')
-rw-r--r--maintenance/counter.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/maintenance/counter.php b/maintenance/counter.php
new file mode 100644
index 00000000..d84c877d
--- /dev/null
+++ b/maintenance/counter.php
@@ -0,0 +1,5 @@
+<?php
+function print_c($last, $current) {
+ echo str_repeat( chr(8), strlen( $last ) ) . $current;
+}
+?>