Index: trunk/phase3/maintenance/language/StatOutputs.php |
— | — | @@ -66,7 +66,7 @@ |
67 | 67 | $blue = '00'; |
68 | 68 | $color = $red . $green . $blue; |
69 | 69 | |
70 | | - $percent = statsOutput::formatPercent( $subset, $total, $revert, $accuracy ); |
| 70 | + $percent = parent::formatPercent( $subset, $total, $revert, $accuracy ); |
71 | 71 | return 'bgcolor="#' . $color . '"|' . $percent; |
72 | 72 | } |
73 | 73 | } |
Index: trunk/phase3/maintenance/installExtension.php |
— | — | @@ -74,7 +74,7 @@ |
75 | 75 | class LocalInstallerRepository extends InstallerRepository { |
76 | 76 | |
77 | 77 | function LocalInstallerRepository ( $path ) { |
78 | | - InstallerRepository::InstallerRepository( $path ); |
| 78 | + parent::InstallerRepository( $path ); |
79 | 79 | } |
80 | 80 | |
81 | 81 | function printListing( ) { |
— | — | @@ -114,7 +114,7 @@ |
115 | 115 | class WebInstallerRepository extends InstallerRepository { |
116 | 116 | |
117 | 117 | function WebInstallerRepository ( $path ) { |
118 | | - InstallerRepository::InstallerRepository( $path ); |
| 118 | + parent::InstallerRepository( $path ); |
119 | 119 | } |
120 | 120 | |
121 | 121 | function printListing( ) { |
— | — | @@ -160,7 +160,7 @@ |
161 | 161 | class SVNInstallerRepository extends InstallerRepository { |
162 | 162 | |
163 | 163 | function SVNInstallerRepository ( $path ) { |
164 | | - InstallerRepository::InstallerRepository( $path ); |
| 164 | + parent::InstallerRepository( $path ); |
165 | 165 | } |
166 | 166 | |
167 | 167 | function printListing( ) { |
Index: trunk/phase3/includes/Skin.php |
— | — | @@ -838,7 +838,7 @@ |
839 | 839 | $parenttree = $this->mTitle->getParentCategoryTree(); |
840 | 840 | # Skin object passed by reference cause it can not be |
841 | 841 | # accessed under the method subfunction drawCategoryBrowser |
842 | | - $tempout = explode( "\n", Skin::drawCategoryBrowser( $parenttree, $this ) ); |
| 842 | + $tempout = explode( "\n", $this->drawCategoryBrowser( $parenttree, $this ) ); |
843 | 843 | # Clean out bogus first entry and sort them |
844 | 844 | unset( $tempout[0] ); |
845 | 845 | asort( $tempout ); |
— | — | @@ -863,7 +863,7 @@ |
864 | 864 | $return .= "\n"; |
865 | 865 | } else { |
866 | 866 | # grab the others elements |
867 | | - $return .= Skin::drawCategoryBrowser( $parent, $skin ) . ' > '; |
| 867 | + $return .= $this->drawCategoryBrowser( $parent, $skin ) . ' > '; |
868 | 868 | } |
869 | 869 | # add our current element to the list |
870 | 870 | $eltitle = Title::newFromText( $element ); |
Index: trunk/phase3/includes/RevisionDelete.php |
— | — | @@ -938,7 +938,7 @@ |
939 | 939 | */ |
940 | 940 | class RevDel_ArchiveItem extends RevDel_RevisionItem { |
941 | 941 | public function __construct( $list, $row ) { |
942 | | - RevDel_Item::__construct( $list, $row ); |
| 942 | + parent::__construct( $list, $row ); |
943 | 943 | $this->revision = Revision::newFromArchiveRow( $row, |
944 | 944 | array( 'page' => $this->list->title->getArticleId() ) ); |
945 | 945 | } |
— | — | @@ -1246,7 +1246,7 @@ |
1247 | 1247 | */ |
1248 | 1248 | class RevDel_ArchivedFileItem extends RevDel_FileItem { |
1249 | 1249 | public function __construct( $list, $row ) { |
1250 | | - RevDel_Item::__construct( $list, $row ); |
| 1250 | + parent::__construct( $list, $row ); |
1251 | 1251 | $this->file = ArchivedFile::newFromRow( $row ); |
1252 | 1252 | } |
1253 | 1253 | |
Index: trunk/phase3/includes/SpecialPage.php |
— | — | @@ -915,7 +915,7 @@ |
916 | 916 | class UnlistedSpecialPage extends SpecialPage |
917 | 917 | { |
918 | 918 | function UnlistedSpecialPage( $name, $restriction = '', $function = false, $file = 'default' ) { |
919 | | - SpecialPage::SpecialPage( $name, $restriction, false, $function, $file ); |
| 919 | + parent::SpecialPage( $name, $restriction, false, $function, $file ); |
920 | 920 | } |
921 | 921 | } |
922 | 922 | |
— | — | @@ -926,7 +926,7 @@ |
927 | 927 | class IncludableSpecialPage extends SpecialPage |
928 | 928 | { |
929 | 929 | function IncludableSpecialPage( $name, $restriction = '', $listed = true, $function = false, $file = 'default' ) { |
930 | | - SpecialPage::SpecialPage( $name, $restriction, $listed, $function, $file, true ); |
| 930 | + parent::SpecialPage( $name, $restriction, $listed, $function, $file, true ); |
931 | 931 | } |
932 | 932 | } |
933 | 933 | |
Index: trunk/phase3/includes/media/Bitmap_ClientOnly.php |
— | — | @@ -2,7 +2,7 @@ |
3 | 3 | |
4 | 4 | class BitmapHandler_ClientOnly extends BitmapHandler { |
5 | 5 | function normaliseParams( $image, &$params ) { |
6 | | - return ImageHandler::normaliseParams( $image, $params ); |
| 6 | + return parent::normaliseParams( $image, $params ); |
7 | 7 | } |
8 | 8 | |
9 | 9 | function doTransform( $image, $dstPath, $dstUrl, $params, $flags = 0 ) { |