mirror of
https://github.com/scratchfoundation/swiki-confirmaccount.git
synced 2024-12-04 12:51:01 -05:00
wrong array parameter
This commit is contained in:
parent
d2fd954b97
commit
066b521780
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ class ConfirmAccountUIHooks {
|
|||
return true;
|
||||
}
|
||||
$count = ConfirmAccount::getOpenRequestCount( '*' );
|
||||
if ( sizeof($count['open']) > 0 ) {
|
||||
if ( $count['open'] > 0 ) {
|
||||
$out->prependHtml(
|
||||
'<div id="mw-confirmaccount-msg" class="plainlinks mw-confirmaccount-bar">' .
|
||||
$context->msg( 'confirmaccount-newrequests' )->numParams( $count['open'] )->parse() .
|
||||
|
|
Loading…
Reference in a new issue