Index: trunk/extensions/ImageTagging/SpecialTaggedImages.php |
— | — | @@ -10,7 +10,6 @@ |
11 | 11 | |
12 | 12 | $wgExtensionFunctions[] = 'wfSpecialTaggedImages'; |
13 | 13 | |
14 | | - |
15 | 14 | function wfSpecialTaggedImages() { |
16 | 15 | global $wgMessageCache; |
17 | 16 | |
— | — | @@ -41,13 +40,14 @@ |
42 | 41 | global $wgRequest; |
43 | 42 | global $wgOut; |
44 | 43 | |
45 | | - $wgOut->addScript("<style type=\"text/css\">/*<![CDATA[*/ @import \"$GLOBALS[wgScriptPath]/extensions/wikia/ImageTagging/img_tagging.css?$GLOBALS[wgStyleVersion]\"; /*]]>*/</style>\n"); |
| 44 | + $wgOut->addScript("<style type=\"text/css\">/*<![CDATA[*/ @import \"$GLOBALS[wgScriptPath]/extensions/ImageTagging/img_tagging.css?$GLOBALS[wgStyleVersion]\"; /*]]>*/</style>\n"); |
46 | 45 | |
47 | 46 | $this->mQuery = preg_replace( "/[\"'<>]/", "", $wgRequest->getText('q') ); |
48 | 47 | $this->mStartPage = preg_replace( "/[\"'<>]/", "", $wgRequest->getVal('page') ); |
49 | 48 | $this->mCount = 0; |
50 | | - if ( ! $this->mStartPage ) $this->mStartPage = 0; |
51 | | - $this->mImages = array(); |
| 49 | + if ( ! $this->mStartPage ) |
| 50 | + $this->mStartPage = 0; |
| 51 | + $this->mImages = array(); |
52 | 52 | |
53 | 53 | SpecialPage::SpecialPage("TaggedImages"); |
54 | 54 | } |