r97355 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r97354‎ | r97355 | r97356 >
Date:01:44, 17 September 2011
Author:ezachte
Status:deferred
Tags:
Comment:
fixed missing function call, which had been moved and renamed
Modified paths:
  • /trunk/wikistats/dumps/WikiReportsOutputWikibooks.pm (modified) (history)

Diff [purge]

Index: trunk/wikistats/dumps/WikiReportsOutputWikibooks.pm
@@ -78,7 +78,6 @@
7979 sub GenerateWikibookReport
8080 {
8181 my $wp = shift ;
82 -
8382 my $file_csv_wikibooks = $path_in . "Wikibooks".uc($wp).".csv" ;
8483 if (! -e $file_csv_wikibooks)
8584 { return ; }
@@ -299,7 +298,8 @@
300299 # print "\n" ;
301300
302301 if (length ($char) > 1)
303 - { $char = &UnicodeToHtml ($char) ; }
 302+ { $char = unicode_to_html ($char) ; }
 303+
304304 if ($char ne $charprev)
305305 {
306306 $line_html = "&nbsp;<br><font size='+1'><b>$char</b></font>&nbsp;\n". $html ;
@@ -327,7 +327,7 @@
328328 [\xf0-\xf7][\x80-\xbf]{3})).*$/$1/x ;
329329
330330 if (length ($char) > 1)
331 - { $char = &UnicodeToHtml ($char) ; }
 331+ { $char = unicode_to_html ($char) ; }
332332 #$char = substr ($book2,0,1) ;
333333 #if (ord ($char) > 127)
334334 #{

Status & tagging log