w/s changes
authorMark A. Hershberger <mah@users.mediawiki.org>
Tue, 16 Aug 2011 16:03:29 +0000 (16:03 +0000)
committerMark A. Hershberger <mah@users.mediawiki.org>
Tue, 16 Aug 2011 16:03:29 +0000 (16:03 +0000)
includes/Article.php

index 2691fa3..591216d 100644 (file)
@@ -1984,7 +1984,7 @@ class Article extends Page {
                        #wfWarn( "Access to raw $fname field " . __CLASS__ );
                        return $this->mPage->$fname;
                }
-        trigger_error( 'Inaccessible property via __get(): ' . $fname, E_USER_NOTICE );
+               trigger_error( 'Inaccessible property via __get(): ' . $fname, E_USER_NOTICE );
        }
 
        /**
@@ -2019,7 +2019,7 @@ class Article extends Page {
                        #wfWarn( "Call to " . __CLASS__ . "::$fname; please use WikiPage instead" );
                        return call_user_func_array( array( $this->mPage, $fname ), $args );
                }
-        trigger_error( 'Inaccessible function via __call(): ' . $fname, E_USER_ERROR );
+               trigger_error( 'Inaccessible function via __call(): ' . $fname, E_USER_ERROR );
        }
 
        // ****** B/C functions to work-around PHP silliness with __call and references ****** //