Index: trunk/extensions/CodeReview/CodeReview.php |
— | — | @@ -159,7 +159,7 @@ |
160 | 160 | $wgHooks['LoadExtensionSchemaUpdates'][] = 'efCodeReviewSchemaUpdates'; |
161 | 161 | |
162 | 162 | function efCodeReviewSchemaUpdates() { |
163 | | - global $wgDBtype, $wgExtNewFields, $wgExtPGNewFields, $wgExtNewIndexes, $wgExtNewTables, $wgExtModifiedFields; |
| 163 | + global $wgDBtype, $wgExtNewFields, /*$wgExtPGNewFields,*/ $wgExtNewIndexes, $wgExtNewTables, $wgExtModifiedFields; |
164 | 164 | $base = dirname( __FILE__ ); |
165 | 165 | if ( $wgDBtype == 'mysql' ) { |
166 | 166 | $wgExtNewTables[] = array( 'code_rev', "$base/codereview.sql" ); // Initial install tables |
Index: trunk/extensions/CodeReview/ui/CodeRepoStatsView.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | } |
11 | 11 | |
12 | 12 | function execute() { |
13 | | - global $wgOut, $wgLang, $wgSkin; |
| 13 | + global $wgOut, $wgLang; |
14 | 14 | |
15 | 15 | $stats = RepoStats::newFromRepo( $this->mRepo ); |
16 | 16 | $repoName = $this->mRepo->getName(); |
Index: trunk/extensions/CodeReview/ui/CodeStatusChangeListView.php |
— | — | @@ -62,7 +62,7 @@ |
63 | 63 | } |
64 | 64 | |
65 | 65 | function formatValue( $name, $value ) { |
66 | | - global $wgUser, $wgLang; |
| 66 | + global $wgLang; |
67 | 67 | switch( $name ) { |
68 | 68 | case 'cpc_rev_id': |
69 | 69 | return $this->mView->mSkin->link( |