Mass convert NULL -> null. Left strings and comments alone, obviously.
[lhc/web/wiklou.git] / includes / Linker.php
index b967a87..c0258c0 100644 (file)
@@ -934,7 +934,7 @@ class Linker {
         * @param mixed $title Title object (to generate link to the section in autocomment) or null
         * @param bool $local Whether section links should refer to local page
         */
-       function formatComment($comment, $title = NULL, $local = false) {
+       function formatComment($comment, $title = null, $local = false) {
                wfProfileIn( __METHOD__ );
 
                # Sanitize text a bit:
@@ -1188,7 +1188,7 @@ class Linker {
         *
         * @return string
         */
-       function commentBlock( $comment, $title = NULL, $local = false ) {
+       function commentBlock( $comment, $title = null, $local = false ) {
                // '*' used to be the comment inserted by the software way back
                // in antiquity in case none was provided, here for backwards
                // compatability, acc. to brion -ævar