repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix for r47482: put the RELEASE-NOTES entry in the "bug fixes" section and not the...
[mediawiki.git]
/
maintenance
/
counter.php
blob
67575ec1c54dace0c291be01674110b5589cd24e
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