Index: trunk/extensions/Randomrootpage/Randomrootpage.php |
— | — | @@ -6,7 +6,7 @@ |
7 | 7 | * @addtogroup Extensions |
8 | 8 | * |
9 | 9 | * @author Hojjat (aka Huji) <huji.huji@gmail.com> |
10 | | - * @copyright Copyright � 2008, Hojjat (aka Huji) |
| 10 | + * @copyright Copyright © 2008, Hojjat (aka Huji) |
11 | 11 | * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later |
12 | 12 | */ |
13 | 13 | |
Index: trunk/extensions/Call/Call_body.php |
— | — | @@ -15,7 +15,7 @@ |
16 | 16 | * @version 0.5 |
17 | 17 | * changed algorithm to recoignize parameters |
18 | 18 | * @version 0.6 |
19 | | - * added a mechanism to save the called template�s raw text to a new article |
| 19 | + * added a mechanism to save the called template's raw text to a new article |
20 | 20 | * when doing this we replace symbols in the raw text which parameter names from our call by the values of these parameters |
21 | 21 | * Call/abc,saveAsPage=xyz,foo=bar |
22 | 22 | * will tale the raw text of "Template:Abc", replace all occurencies of 'foo' by 'bar' and save the result as a normal |
Index: trunk/extensions/SemanticGoogleMaps/SGM_QueryPrinter.php |
— | — | @@ -3,7 +3,7 @@ |
4 | 4 | /** |
5 | 5 | * Print query results in a Google Map. Based on Google Maps API code |
6 | 6 | * written by Robert Buzink and query results printing code written by |
7 | | - * Markus Kr�tzsch. |
| 7 | + * Markus Krötzsch. |
8 | 8 | * |
9 | 9 | * @author Yaron Koren |
10 | 10 | */ |
Index: trunk/extensions/geo/geo.php |
— | — | @@ -165,7 +165,7 @@ |
166 | 166 | $filename = $gisbaseurl."?maparea=" . $arg. "&action=raw" ; |
167 | 167 | $handle = fopen($filename, "r"); |
168 | 168 | $contents = ''; |
169 | | - # *EK* � couldn't get this to work... |
| 169 | + # *EK* -- couldn't get this to work... |
170 | 170 | while (!feof($handle)) |
171 | 171 | $contents .= fread($handle, 256*1024); |
172 | 172 | fclose($handle); |
Index: trunk/extensions/GoogleAdSense/GoogleAdSense.class.php |
— | — | @@ -14,6 +14,7 @@ |
15 | 15 | $wgGoogleAdSenseSlot, $wgGoogleAdSenseSrc, |
16 | 16 | $wgGoogleAdSenseAnonOnly, $wgUser; |
17 | 17 | |
| 18 | + |
18 | 19 | // Return $bar unchanged if not all values have been set. |
19 | 20 | // FIXME: signal incorrect configuration nicely? |
20 | 21 | if( $wgGoogleAdSenseClient == 'none' || $wgGoogleAdSenseSlot == 'none' || $wgGoogleAdSenseID == 'none' ) |