Index: trunk/phase3/includes/Skin.php |
— | — | @@ -1567,7 +1567,7 @@ |
1568 | 1568 | $parserMemc->set( $key, array( 'html' => $parsed, 'hash' => md5( $notice ) ), 600 ); |
1569 | 1569 | $notice = $parsed; |
1570 | 1570 | } else { |
1571 | | - wfDebug( 'wfGetCachedNotice called for ' . $name . ' with no $wgOut available' . "\n" ); |
| 1571 | + wfDebug( 'Skin::getCachedNotice called for ' . $name . ' with no $wgOut available' . "\n" ); |
1572 | 1572 | $notice = ''; |
1573 | 1573 | } |
1574 | 1574 | } |
— | — | @@ -1586,7 +1586,7 @@ |
1587 | 1587 | wfProfileIn( __METHOD__ ); |
1588 | 1588 | |
1589 | 1589 | $key = 'namespacenotice-' . $this->mTitle->getNsText(); |
1590 | | - $namespaceNotice = wfGetCachedNotice( $key ); |
| 1590 | + $namespaceNotice = $this->getCachedNotice( $key ); |
1591 | 1591 | if ( $namespaceNotice && substr( $namespaceNotice, 0, 7 ) != '<p><' ) { |
1592 | 1592 | $namespaceNotice = '<div id="namespacebanner">' . $namespaceNotice . '</div>'; |
1593 | 1593 | } else { |