Change count() to sizeof()

This commit is contained in:
Ice
2008-08-09 13:27:34 +00:00
parent 2a37786346
commit 2f7427a29e
7 changed files with 16 additions and 16 deletions

View File

@@ -240,7 +240,7 @@ class acp_portal
// Links require preprocessing
$links = ( strlen($portal_config['portal_links_array']) ) ? utf_unserialize($portal_config['portal_links_array']) : array() ;
$this->link_num = count( $links );
$this->link_num = sizeof( $links );
$lid = request_var('link', 0);