API: Requesting a token you aren't allowed to request no longer dies with an error...
[lhc/web/wiklou.git] / includes / SpecialPreferences.php
1 <?php
2 /**
3 * Hold things related to displaying and saving user preferences.
4 * @file
5 * @ingroup SpecialPage
6 */
7
8 /**
9 * Entry point that create the "Preferences" object
10 */
11 function wfSpecialPreferences() {
12 global $wgRequest;
13
14 $form = new PreferencesForm( $wgRequest );
15 $form->execute();
16 }
17
18 /**
19 * Preferences form handling
20 * This object will show the preferences form and can save it as well.
21 * @ingroup SpecialPage
22 */
23 class PreferencesForm {
24 var $mQuickbar, $mOldpass, $mNewpass, $mRetypePass, $mStubs;
25 var $mRows, $mCols, $mSkin, $mMath, $mDate, $mUserEmail, $mEmailFlag, $mNick;
26 var $mUserLanguage, $mUserVariant;
27 var $mSearch, $mRecent, $mRecentDays, $mHourDiff, $mSearchLines, $mSearchChars, $mAction;
28 var $mReset, $mPosted, $mToggles, $mUseAjaxSearch, $mSearchNs, $mRealName, $mImageSize;
29 var $mUnderline, $mWatchlistEdits;
30
31 /**
32 * Constructor
33 * Load some values
34 */
35 function PreferencesForm( &$request ) {
36 global $wgContLang, $wgUser, $wgAllowRealName;
37
38 $this->mQuickbar = $request->getVal( 'wpQuickbar' );
39 $this->mOldpass = $request->getVal( 'wpOldpass' );
40 $this->mNewpass = $request->getVal( 'wpNewpass' );
41 $this->mRetypePass =$request->getVal( 'wpRetypePass' );
42 $this->mStubs = $request->getVal( 'wpStubs' );
43 $this->mRows = $request->getVal( 'wpRows' );
44 $this->mCols = $request->getVal( 'wpCols' );
45 $this->mSkin = $request->getVal( 'wpSkin' );
46 $this->mMath = $request->getVal( 'wpMath' );
47 $this->mDate = $request->getVal( 'wpDate' );
48 $this->mUserEmail = $request->getVal( 'wpUserEmail' );
49 $this->mRealName = $wgAllowRealName ? $request->getVal( 'wpRealName' ) : '';
50 $this->mEmailFlag = $request->getCheck( 'wpEmailFlag' ) ? 0 : 1;
51 $this->mNick = $request->getVal( 'wpNick' );
52 $this->mUserLanguage = $request->getVal( 'wpUserLanguage' );
53 $this->mUserVariant = $request->getVal( 'wpUserVariant' );
54 $this->mSearch = $request->getVal( 'wpSearch' );
55 $this->mRecent = $request->getVal( 'wpRecent' );
56 $this->mRecentDays = $request->getVal( 'wpRecentDays' );
57 $this->mHourDiff = $request->getVal( 'wpHourDiff' );
58 $this->mSearchLines = $request->getVal( 'wpSearchLines' );
59 $this->mSearchChars = $request->getVal( 'wpSearchChars' );
60 $this->mImageSize = $request->getVal( 'wpImageSize' );
61 $this->mThumbSize = $request->getInt( 'wpThumbSize' );
62 $this->mUnderline = $request->getInt( 'wpOpunderline' );
63 $this->mAction = $request->getVal( 'action' );
64 $this->mReset = $request->getCheck( 'wpReset' );
65 $this->mPosted = $request->wasPosted();
66 $this->mSuccess = $request->getCheck( 'success' );
67 $this->mWatchlistDays = $request->getVal( 'wpWatchlistDays' );
68 $this->mWatchlistEdits = $request->getVal( 'wpWatchlistEdits' );
69 $this->mUseAjaxSearch = $request->getCheck( 'wpUseAjaxSearch' );
70 $this->mDisableMWSuggest = $request->getCheck( 'wpDisableMWSuggest' );
71
72 $this->mSaveprefs = $request->getCheck( 'wpSaveprefs' ) &&
73 $this->mPosted &&
74 $wgUser->matchEditToken( $request->getVal( 'wpEditToken' ) );
75
76 # User toggles (the big ugly unsorted list of checkboxes)
77 $this->mToggles = array();
78 if ( $this->mPosted ) {
79 $togs = User::getToggles();
80 foreach ( $togs as $tname ) {
81 $this->mToggles[$tname] = $request->getCheck( "wpOp$tname" ) ? 1 : 0;
82 }
83 }
84
85 $this->mUsedToggles = array();
86
87 # Search namespace options
88 # Note: namespaces don't necessarily have consecutive keys
89 $this->mSearchNs = array();
90 if ( $this->mPosted ) {
91 $namespaces = $wgContLang->getNamespaces();
92 foreach ( $namespaces as $i => $namespace ) {
93 if ( $i >= 0 ) {
94 $this->mSearchNs[$i] = $request->getCheck( "wpNs$i" ) ? 1 : 0;
95 }
96 }
97 }
98
99 # Validate language
100 if ( !preg_match( '/^[a-z\-]*$/', $this->mUserLanguage ) ) {
101 $this->mUserLanguage = 'nolanguage';
102 }
103
104 wfRunHooks( 'InitPreferencesForm', array( $this, $request ) );
105 }
106
107 function execute() {
108 global $wgUser, $wgOut;
109
110 if ( $wgUser->isAnon() ) {
111 $wgOut->showErrorPage( 'prefsnologin', 'prefsnologintext' );
112 return;
113 }
114 if ( wfReadOnly() ) {
115 $wgOut->readOnlyPage();
116 return;
117 }
118 if ( $this->mReset ) {
119 $this->resetPrefs();
120 $this->mainPrefsForm( 'reset', wfMsg( 'prefsreset' ) );
121 } else if ( $this->mSaveprefs ) {
122 $this->savePreferences();
123 } else {
124 $this->resetPrefs();
125 $this->mainPrefsForm( '' );
126 }
127 }
128 /**
129 * @access private
130 */
131 function validateInt( &$val, $min=0, $max=0x7fffffff ) {
132 $val = intval($val);
133 $val = min($val, $max);
134 $val = max($val, $min);
135 return $val;
136 }
137
138 /**
139 * @access private
140 */
141 function validateFloat( &$val, $min, $max=0x7fffffff ) {
142 $val = floatval( $val );
143 $val = min( $val, $max );
144 $val = max( $val, $min );
145 return( $val );
146 }
147
148 /**
149 * @access private
150 */
151 function validateIntOrNull( &$val, $min=0, $max=0x7fffffff ) {
152 $val = trim($val);
153 if($val === '') {
154 return null;
155 } else {
156 return $this->validateInt( $val, $min, $max );
157 }
158 }
159
160 /**
161 * @access private
162 */
163 function validateDate( $val ) {
164 global $wgLang, $wgContLang;
165 if ( $val !== false && (
166 in_array( $val, (array)$wgLang->getDatePreferences() ) ||
167 in_array( $val, (array)$wgContLang->getDatePreferences() ) ) )
168 {
169 return $val;
170 } else {
171 return $wgLang->getDefaultDateFormat();
172 }
173 }
174
175 /**
176 * Used to validate the user inputed timezone before saving it as
177 * 'timecorrection', will return '00:00' if fed bogus data.
178 * Note: It's not a 100% correct implementation timezone-wise, it will
179 * accept stuff like '14:30',
180 * @access private
181 * @param string $s the user input
182 * @return string
183 */
184 function validateTimeZone( $s ) {
185 if ( $s !== '' ) {
186 if ( strpos( $s, ':' ) ) {
187 # HH:MM
188 $array = explode( ':' , $s );
189 $hour = intval( $array[0] );
190 $minute = intval( $array[1] );
191 } else {
192 $minute = intval( $s * 60 );
193 $hour = intval( $minute / 60 );
194 $minute = abs( $minute ) % 60;
195 }
196 # Max is +14:00 and min is -12:00, see:
197 # http://en.wikipedia.org/wiki/Timezone
198 $hour = min( $hour, 14 );
199 $hour = max( $hour, -12 );
200 $minute = min( $minute, 59 );
201 $minute = max( $minute, 0 );
202 $s = sprintf( "%02d:%02d", $hour, $minute );
203 }
204 return $s;
205 }
206
207 /**
208 * @access private
209 */
210 function savePreferences() {
211 global $wgUser, $wgOut, $wgParser;
212 global $wgEnableUserEmail, $wgEnableEmail;
213 global $wgEmailAuthentication, $wgRCMaxAge;
214 global $wgAuth, $wgEmailConfirmToEdit;
215
216
217 if ( '' != $this->mNewpass && $wgAuth->allowPasswordChange() ) {
218 if ( $this->mNewpass != $this->mRetypePass ) {
219 wfRunHooks( 'PrefsPasswordAudit', array( $wgUser, $this->mNewpass, 'badretype' ) );
220 $this->mainPrefsForm( 'error', wfMsg( 'badretype' ) );
221 return;
222 }
223
224 if (!$wgUser->checkPassword( $this->mOldpass )) {
225 wfRunHooks( 'PrefsPasswordAudit', array( $wgUser, $this->mNewpass, 'wrongpassword' ) );
226 $this->mainPrefsForm( 'error', wfMsg( 'wrongpassword' ) );
227 return;
228 }
229
230 try {
231 $wgUser->setPassword( $this->mNewpass );
232 wfRunHooks( 'PrefsPasswordAudit', array( $wgUser, $this->mNewpass, 'success' ) );
233 $this->mNewpass = $this->mOldpass = $this->mRetypePass = '';
234 } catch( PasswordError $e ) {
235 wfRunHooks( 'PrefsPasswordAudit', array( $wgUser, $this->mNewpass, 'error' ) );
236 $this->mainPrefsForm( 'error', $e->getMessage() );
237 return;
238 }
239 }
240 $wgUser->setRealName( $this->mRealName );
241 $oldOptions = $wgUser->mOptions;
242
243 if( $wgUser->getOption( 'language' ) !== $this->mUserLanguage ) {
244 $needRedirect = true;
245 } else {
246 $needRedirect = false;
247 }
248
249 # Validate the signature and clean it up as needed
250 global $wgMaxSigChars;
251 if( mb_strlen( $this->mNick ) > $wgMaxSigChars ) {
252 global $wgLang;
253 $this->mainPrefsForm( 'error',
254 wfMsg( 'badsiglength', $wgLang->formatNum( $wgMaxSigChars ) ) );
255 return;
256 } elseif( $this->mToggles['fancysig'] ) {
257 if( $wgParser->validateSig( $this->mNick ) !== false ) {
258 $this->mNick = $wgParser->cleanSig( $this->mNick );
259 } else {
260 $this->mainPrefsForm( 'error', wfMsg( 'badsig' ) );
261 return;
262 }
263 } else {
264 // When no fancy sig used, make sure ~{3,5} get removed.
265 $this->mNick = $wgParser->cleanSigInSig( $this->mNick );
266 }
267
268 $wgUser->setOption( 'language', $this->mUserLanguage );
269 $wgUser->setOption( 'variant', $this->mUserVariant );
270 $wgUser->setOption( 'nickname', $this->mNick );
271 $wgUser->setOption( 'quickbar', $this->mQuickbar );
272 $wgUser->setOption( 'skin', $this->mSkin );
273 global $wgUseTeX;
274 if( $wgUseTeX ) {
275 $wgUser->setOption( 'math', $this->mMath );
276 }
277 $wgUser->setOption( 'date', $this->validateDate( $this->mDate ) );
278 $wgUser->setOption( 'searchlimit', $this->validateIntOrNull( $this->mSearch ) );
279 $wgUser->setOption( 'contextlines', $this->validateIntOrNull( $this->mSearchLines ) );
280 $wgUser->setOption( 'contextchars', $this->validateIntOrNull( $this->mSearchChars ) );
281 $wgUser->setOption( 'rclimit', $this->validateIntOrNull( $this->mRecent ) );
282 $wgUser->setOption( 'rcdays', $this->validateInt($this->mRecentDays, 1, ceil($wgRCMaxAge / (3600*24))));
283 $wgUser->setOption( 'wllimit', $this->validateIntOrNull( $this->mWatchlistEdits, 0, 1000 ) );
284 $wgUser->setOption( 'rows', $this->validateInt( $this->mRows, 4, 1000 ) );
285 $wgUser->setOption( 'cols', $this->validateInt( $this->mCols, 4, 1000 ) );
286 $wgUser->setOption( 'stubthreshold', $this->validateIntOrNull( $this->mStubs ) );
287 $wgUser->setOption( 'timecorrection', $this->validateTimeZone( $this->mHourDiff, -12, 14 ) );
288 $wgUser->setOption( 'imagesize', $this->mImageSize );
289 $wgUser->setOption( 'thumbsize', $this->mThumbSize );
290 $wgUser->setOption( 'underline', $this->validateInt($this->mUnderline, 0, 2) );
291 $wgUser->setOption( 'watchlistdays', $this->validateFloat( $this->mWatchlistDays, 0, 7 ) );
292 $wgUser->setOption( 'ajaxsearch', $this->mUseAjaxSearch );
293 $wgUser->setOption( 'disablesuggest', $this->mDisableMWSuggest );
294
295 # Set search namespace options
296 foreach( $this->mSearchNs as $i => $value ) {
297 $wgUser->setOption( "searchNs{$i}", $value );
298 }
299
300 if( $wgEnableEmail && $wgEnableUserEmail ) {
301 $wgUser->setOption( 'disablemail', $this->mEmailFlag );
302 }
303
304 # Set user toggles
305 foreach ( $this->mToggles as $tname => $tvalue ) {
306 $wgUser->setOption( $tname, $tvalue );
307 }
308
309 $error = false;
310 if( $wgEnableEmail ) {
311 $newadr = $this->mUserEmail;
312 $oldadr = $wgUser->getEmail();
313 if( ($newadr != '') && ($newadr != $oldadr) ) {
314 # the user has supplied a new email address on the login page
315 if( $wgUser->isValidEmailAddr( $newadr ) ) {
316 # new behaviour: set this new emailaddr from login-page into user database record
317 $wgUser->setEmail( $newadr );
318 # but flag as "dirty" = unauthenticated
319 $wgUser->invalidateEmail();
320 if ($wgEmailAuthentication) {
321 # Mail a temporary password to the dirty address.
322 # User can come back through the confirmation URL to re-enable email.
323 $result = $wgUser->sendConfirmationMail();
324 if( WikiError::isError( $result ) ) {
325 $error = wfMsg( 'mailerror', htmlspecialchars( $result->getMessage() ) );
326 } else {
327 $error = wfMsg( 'eauthentsent', $wgUser->getName() );
328 }
329 }
330 } else {
331 $error = wfMsg( 'invalidemailaddress' );
332 }
333 } else {
334 if( $wgEmailConfirmToEdit && empty( $newadr ) ) {
335 $this->mainPrefsForm( 'error', wfMsg( 'noemailtitle' ) );
336 return;
337 }
338 $wgUser->setEmail( $this->mUserEmail );
339 }
340 if( $oldadr != $newadr ) {
341 wfRunHooks( 'PrefsEmailAudit', array( $wgUser, $oldadr, $newadr ) );
342 }
343 }
344
345 if( !$wgAuth->updateExternalDB( $wgUser ) ){
346 $this->mainPrefsForm( 'error', wfMsg( 'externaldberror' ) );
347 return;
348 }
349
350 $msg = '';
351 if ( !wfRunHooks( 'SavePreferences', array( $this, $wgUser, &$msg, $oldOptions ) ) ) {
352 $this->mainPrefsForm( 'error', $msg );
353 return;
354 }
355
356 $wgUser->setCookies();
357 $wgUser->saveSettings();
358
359 if( $needRedirect && $error === false ) {
360 $title = SpecialPage::getTitleFor( 'Preferences' );
361 $wgOut->redirect( $title->getFullURL( 'success' ) );
362 return;
363 }
364
365 $wgOut->parserOptions( ParserOptions::newFromUser( $wgUser ) );
366 $this->mainPrefsForm( $error === false ? 'success' : 'error', $error);
367 }
368
369 /**
370 * @access private
371 */
372 function resetPrefs() {
373 global $wgUser, $wgLang, $wgContLang, $wgContLanguageCode, $wgAllowRealName;
374
375 $this->mOldpass = $this->mNewpass = $this->mRetypePass = '';
376 $this->mUserEmail = $wgUser->getEmail();
377 $this->mUserEmailAuthenticationtimestamp = $wgUser->getEmailAuthenticationtimestamp();
378 $this->mRealName = ($wgAllowRealName) ? $wgUser->getRealName() : '';
379
380 # language value might be blank, default to content language
381 $this->mUserLanguage = $wgUser->getOption( 'language', $wgContLanguageCode );
382
383 $this->mUserVariant = $wgUser->getOption( 'variant');
384 $this->mEmailFlag = $wgUser->getOption( 'disablemail' ) == 1 ? 1 : 0;
385 $this->mNick = $wgUser->getOption( 'nickname' );
386
387 $this->mQuickbar = $wgUser->getOption( 'quickbar' );
388 $this->mSkin = Skin::normalizeKey( $wgUser->getOption( 'skin' ) );
389 $this->mMath = $wgUser->getOption( 'math' );
390 $this->mDate = $wgUser->getDatePreference();
391 $this->mRows = $wgUser->getOption( 'rows' );
392 $this->mCols = $wgUser->getOption( 'cols' );
393 $this->mStubs = $wgUser->getOption( 'stubthreshold' );
394 $this->mHourDiff = $wgUser->getOption( 'timecorrection' );
395 $this->mSearch = $wgUser->getOption( 'searchlimit' );
396 $this->mSearchLines = $wgUser->getOption( 'contextlines' );
397 $this->mSearchChars = $wgUser->getOption( 'contextchars' );
398 $this->mImageSize = $wgUser->getOption( 'imagesize' );
399 $this->mThumbSize = $wgUser->getOption( 'thumbsize' );
400 $this->mRecent = $wgUser->getOption( 'rclimit' );
401 $this->mRecentDays = $wgUser->getOption( 'rcdays' );
402 $this->mWatchlistEdits = $wgUser->getOption( 'wllimit' );
403 $this->mUnderline = $wgUser->getOption( 'underline' );
404 $this->mWatchlistDays = $wgUser->getOption( 'watchlistdays' );
405 $this->mUseAjaxSearch = $wgUser->getBoolOption( 'ajaxsearch' );
406 $this->mDisableMWSuggest = $wgUser->getBoolOption( 'disablesuggest' );
407
408 $togs = User::getToggles();
409 foreach ( $togs as $tname ) {
410 $this->mToggles[$tname] = $wgUser->getOption( $tname );
411 }
412
413 $namespaces = $wgContLang->getNamespaces();
414 foreach ( $namespaces as $i => $namespace ) {
415 if ( $i >= NS_MAIN ) {
416 $this->mSearchNs[$i] = $wgUser->getOption( 'searchNs'.$i );
417 }
418 }
419
420 wfRunHooks( 'ResetPreferences', array( $this, $wgUser ) );
421 }
422
423 /**
424 * @access private
425 */
426 function namespacesCheckboxes() {
427 global $wgContLang;
428
429 # Determine namespace checkboxes
430 $namespaces = $wgContLang->getNamespaces();
431 $r1 = null;
432
433 foreach ( $namespaces as $i => $name ) {
434 if ($i < 0)
435 continue;
436 $checked = $this->mSearchNs[$i] ? "checked='checked'" : '';
437 $name = str_replace( '_', ' ', $namespaces[$i] );
438
439 if ( empty($name) )
440 $name = wfMsg( 'blanknamespace' );
441
442 $r1 .= "<input type='checkbox' value='1' name='wpNs$i' id='wpNs$i' {$checked}/> <label for='wpNs$i'>{$name}</label><br />\n";
443 }
444 return $r1;
445 }
446
447
448 function getToggle( $tname, $trailer = false, $disabled = false ) {
449 global $wgUser, $wgLang;
450
451 $this->mUsedToggles[$tname] = true;
452 $ttext = $wgLang->getUserToggle( $tname );
453
454 $checked = $wgUser->getOption( $tname ) == 1 ? ' checked="checked"' : '';
455 $disabled = $disabled ? ' disabled="disabled"' : '';
456 $trailer = $trailer ? $trailer : '';
457 return "<div class='toggle'><input type='checkbox' value='1' id=\"$tname\" name=\"wpOp$tname\"$checked$disabled />" .
458 " <span class='toggletext'><label for=\"$tname\">$ttext</label>$trailer</span></div>\n";
459 }
460
461 function getToggles( $items ) {
462 $out = "";
463 foreach( $items as $item ) {
464 if( $item === false )
465 continue;
466 if( is_array( $item ) ) {
467 list( $key, $trailer ) = $item;
468 } else {
469 $key = $item;
470 $trailer = false;
471 }
472 $out .= $this->getToggle( $key, $trailer );
473 }
474 return $out;
475 }
476
477 function addRow($td1, $td2) {
478 return "<tr><td class='mw-label'>$td1</td><td class='mw-input'>$td2</td></tr>";
479 }
480
481 /**
482 * Helper function for user information panel
483 * @param $td1 label for an item
484 * @param $td2 item or null
485 * @param $td3 optional help or null
486 * @return xhtml block
487 */
488 function tableRow( $td1, $td2 = null, $td3 = null ) {
489 global $wgContLang;
490
491 $align['align'] = $wgContLang->isRtl() ? 'right' : 'left';
492
493 if ( is_null( $td3 ) ) {
494 $td3 = '';
495 } else {
496 $td3 = Xml::tags( 'tr', null,
497 Xml::tags( 'td', array( 'colspan' => '2' ), $td3 )
498 );
499 }
500
501 if ( is_null( $td2 ) ) {
502 $td1 = Xml::tags( 'td', $align + array( 'colspan' => '2' ), $td1 );
503 $td2 = '';
504 } else {
505 $td1 = Xml::tags( 'td', $align, $td1 );
506 $td2 = Xml::tags( 'td', $align, $td2 );
507 }
508
509 return Xml::tags( 'tr', null, $td1 . $td2 ). $td3 . "\n";
510
511 }
512
513 /**
514 * @access private
515 */
516 function mainPrefsForm( $status , $message = '' ) {
517 global $wgUser, $wgOut, $wgLang, $wgContLang;
518 global $wgAllowRealName, $wgImageLimits, $wgThumbLimits;
519 global $wgDisableLangConversion;
520 global $wgEnotifWatchlist, $wgEnotifUserTalk,$wgEnotifMinorEdits;
521 global $wgRCShowWatchingUsers, $wgEnotifRevealEditorAddress;
522 global $wgEnableEmail, $wgEnableUserEmail, $wgEmailAuthentication;
523 global $wgContLanguageCode, $wgDefaultSkin, $wgSkipSkins, $wgAuth;
524 global $wgEmailConfirmToEdit, $wgAjaxSearch, $wgEnableMWSuggest;
525
526 $wgOut->setPageTitle( wfMsg( 'preferences' ) );
527 $wgOut->setArticleRelated( false );
528 $wgOut->setRobotpolicy( 'noindex,nofollow' );
529 $wgOut->addScriptFile( 'prefs.js' );
530
531 $wgOut->disallowUserJs(); # Prevent hijacked user scripts from sniffing passwords etc.
532
533 if ( $this->mSuccess || 'success' == $status ) {
534 $wgOut->wrapWikiMsg( '<div class="successbox"><strong>$1</strong></div>', 'savedprefs' );
535 } else if ( 'error' == $status ) {
536 $wgOut->addWikiText( '<div class="errorbox"><strong>' . $message . '</strong></div>' );
537 } else if ( '' != $status ) {
538 $wgOut->addWikiText( $message . "\n----" );
539 }
540
541 $qbs = $wgLang->getQuickbarSettings();
542 $skinNames = $wgLang->getSkinNames();
543 $mathopts = $wgLang->getMathNames();
544 $dateopts = $wgLang->getDatePreferences();
545 $togs = User::getToggles();
546
547 $titleObj = SpecialPage::getTitleFor( 'Preferences' );
548 $action = $titleObj->escapeLocalURL();
549
550 # Pre-expire some toggles so they won't show if disabled
551 $this->mUsedToggles[ 'shownumberswatching' ] = true;
552 $this->mUsedToggles[ 'showupdated' ] = true;
553 $this->mUsedToggles[ 'enotifwatchlistpages' ] = true;
554 $this->mUsedToggles[ 'enotifusertalkpages' ] = true;
555 $this->mUsedToggles[ 'enotifminoredits' ] = true;
556 $this->mUsedToggles[ 'enotifrevealaddr' ] = true;
557 $this->mUsedToggles[ 'ccmeonemails' ] = true;
558 $this->mUsedToggles[ 'uselivepreview' ] = true;
559
560
561 if ( !$this->mEmailFlag ) { $emfc = 'checked="checked"'; }
562 else { $emfc = ''; }
563
564
565 if ($wgEmailAuthentication && ($this->mUserEmail != '') ) {
566 if( $wgUser->getEmailAuthenticationTimestamp() ) {
567 $emailauthenticated = wfMsg('emailauthenticated',$wgLang->timeanddate($wgUser->getEmailAuthenticationTimestamp(), true ) ).'<br />';
568 $disableEmailPrefs = false;
569 } else {
570 $disableEmailPrefs = true;
571 $skin = $wgUser->getSkin();
572 $emailauthenticated = wfMsg('emailnotauthenticated').'<br />' .
573 $skin->makeKnownLinkObj( SpecialPage::getTitleFor( 'Confirmemail' ),
574 wfMsg( 'emailconfirmlink' ) ) . '<br />';
575 }
576 } else {
577 $emailauthenticated = '';
578 $disableEmailPrefs = false;
579 }
580
581 if ($this->mUserEmail == '') {
582 $emailauthenticated = wfMsg( 'noemailprefs' ) . '<br />';
583 }
584
585 $ps = $this->namespacesCheckboxes();
586
587 $enotifwatchlistpages = ($wgEnotifWatchlist) ? $this->getToggle( 'enotifwatchlistpages', false, $disableEmailPrefs ) : '';
588 $enotifusertalkpages = ($wgEnotifUserTalk) ? $this->getToggle( 'enotifusertalkpages', false, $disableEmailPrefs ) : '';
589 $enotifminoredits = ($wgEnotifWatchlist && $wgEnotifMinorEdits) ? $this->getToggle( 'enotifminoredits', false, $disableEmailPrefs ) : '';
590 $enotifrevealaddr = (($wgEnotifWatchlist || $wgEnotifUserTalk) && $wgEnotifRevealEditorAddress) ? $this->getToggle( 'enotifrevealaddr', false, $disableEmailPrefs ) : '';
591
592 # </FIXME>
593
594 $wgOut->addHTML( "<form action=\"$action\" method='post'>" );
595 $wgOut->addHTML( "<div id='preferences'>" );
596
597 # User data
598
599 $wgOut->addHTML(
600 Xml::openElement( 'fieldset ' ) .
601 Xml::element( 'legend', null, wfMsg('prefs-personal') ) .
602 Xml::openElement( 'table' ) .
603 $this->tableRow( Xml::element( 'h2', null, wfMsg( 'prefs-personal' ) ) )
604 );
605
606 $userInformationHtml =
607 $this->tableRow( wfMsgHtml( 'username' ), htmlspecialchars( $wgUser->getName() ) ) .
608 $this->tableRow( wfMsgHtml( 'uid' ), htmlspecialchars( $wgUser->getID() ) ) .
609 $this->tableRow(
610 wfMsgHtml( 'prefs-edits' ),
611 $wgLang->formatNum( User::edits( $wgUser->getId() ) )
612 );
613
614 if( wfRunHooks( 'PreferencesUserInformationPanel', array( $this, &$userInformationHtml ) ) ) {
615 $wgOut->addHtml( $userInformationHtml );
616 }
617
618 if ( $wgAllowRealName ) {
619 $wgOut->addHTML(
620 $this->tableRow(
621 Xml::label( wfMsg('yourrealname'), 'wpRealName' ),
622 Xml::input( 'wpRealName', 25, $this->mRealName, array( 'id' => 'wpRealName' ) ),
623 Xml::tags('div', array( 'class' => 'prefsectiontip' ),
624 wfMsgExt( 'prefs-help-realname', 'parseinline' )
625 )
626 )
627 );
628 }
629 if ( $wgEnableEmail ) {
630 $wgOut->addHTML(
631 $this->tableRow(
632 Xml::label( wfMsg('youremail'), 'wpUserEmail' ),
633 Xml::input( 'wpUserEmail', 25, $this->mUserEmail, array( 'id' => 'wpUserEmail' ) ),
634 Xml::tags('div', array( 'class' => 'prefsectiontip' ),
635 wfMsgExt( $wgEmailConfirmToEdit ? 'prefs-help-email-required' : 'prefs-help-email', 'parseinline' )
636 )
637 )
638 );
639 }
640
641 global $wgParser, $wgMaxSigChars;
642 if( mb_strlen( $this->mNick ) > $wgMaxSigChars ) {
643 $invalidSig = $this->tableRow(
644 '&nbsp;',
645 Xml::element( 'span', array( 'class' => 'error' ),
646 wfMsg( 'badsiglength', $wgLang->formatNum( $wgMaxSigChars ) ) )
647 );
648 } elseif( !empty( $this->mToggles['fancysig'] ) &&
649 false === $wgParser->validateSig( $this->mNick ) ) {
650 $invalidSig = $this->tableRow(
651 '&nbsp;',
652 Xml::element( 'span', array( 'class' => 'error' ), wfMsg( 'badsig' ) )
653 );
654 } else {
655 $invalidSig = '';
656 }
657
658 $wgOut->addHTML(
659 $this->tableRow(
660 Xml::label( wfMsg( 'yournick' ), 'wpNick' ),
661 Xml::input( 'wpNick', 25, $this->mNick,
662 array(
663 'id' => 'wpNick',
664 // Note: $wgMaxSigChars is enforced in Unicode characters,
665 // both on the backend and now in the browser.
666 // Badly-behaved requests may still try to submit
667 // an overlong string, however.
668 'maxlength' => $wgMaxSigChars ) )
669 ) .
670 $invalidSig .
671 $this->tableRow( '&nbsp;', $this->getToggle( 'fancysig' ) )
672 );
673
674 list( $lsLabel, $lsSelect) = Xml::languageSelector( $this->mUserLanguage );
675 $wgOut->addHTML(
676 $this->tableRow( $lsLabel, $lsSelect )
677 );
678
679 /* see if there are multiple language variants to choose from*/
680 if(!$wgDisableLangConversion) {
681 $variants = $wgContLang->getVariants();
682 $variantArray = array();
683
684 $languages = Language::getLanguageNames( true );
685 foreach($variants as $v) {
686 $v = str_replace( '_', '-', strtolower($v));
687 if( array_key_exists( $v, $languages ) ) {
688 // If it doesn't have a name, we'll pretend it doesn't exist
689 $variantArray[$v] = $languages[$v];
690 }
691 }
692
693 $options = "\n";
694 foreach( $variantArray as $code => $name ) {
695 $selected = ($code == $this->mUserVariant);
696 $options .= Xml::option( "$code - $name", $code, $selected ) . "\n";
697 }
698
699 if(count($variantArray) > 1) {
700 $wgOut->addHtml(
701 $this->tableRow(
702 Xml::label( wfMsg( 'yourvariant' ), 'wpUserVariant' ),
703 Xml::tags( 'select',
704 array( 'name' => 'wpUserVariant', 'id' => 'wpUserVariant' ),
705 $options
706 )
707 )
708 );
709 }
710 }
711
712 # Password
713 if( $wgAuth->allowPasswordChange() ) {
714 $wgOut->addHTML(
715 $this->tableRow( Xml::element( 'h2', null, wfMsg( 'changepassword' ) ) ) .
716 $this->tableRow(
717 Xml::label( wfMsg( 'oldpassword' ), 'wpOldpass' ),
718 Xml::password( 'wpOldpass', 25, $this->mOldpass, array( 'id' => 'wpOldpass' ) )
719 ) .
720 $this->tableRow(
721 Xml::label( wfMsg( 'newpassword' ), 'wpNewpass' ),
722 Xml::password( 'wpNewpass', 25, $this->mNewpass, array( 'id' => 'wpNewpass' ) )
723 ) .
724 $this->tableRow(
725 Xml::label( wfMsg( 'retypenew' ), 'wpRetypePass' ),
726 Xml::password( 'wpRetypePass', 25, $this->mRetypePass, array( 'id' => 'wpRetypePass' ) )
727 ) .
728 Xml::tags( 'tr', null,
729 Xml::tags( 'td', array( 'colspan' => '2' ),
730 $this->getToggle( "rememberpassword" )
731 )
732 )
733 );
734 }
735
736 # <FIXME>
737 # Enotif
738 if ( $wgEnableEmail ) {
739
740 $moreEmail = '';
741 if ($wgEnableUserEmail) {
742 // fixme -- the "allowemail" pseudotoggle is a hacked-together
743 // inversion for the "disableemail" preference.
744 $emf = wfMsg( 'allowemail' );
745 $disabled = $disableEmailPrefs ? ' disabled="disabled"' : '';
746 $moreEmail =
747 "<input type='checkbox' $emfc $disabled value='1' name='wpEmailFlag' id='wpEmailFlag' /> <label for='wpEmailFlag'>$emf</label>" .
748 $this->getToggle( 'ccmeonemails', '', $disableEmailPrefs );
749 }
750
751
752 $wgOut->addHTML(
753 $this->tableRow( Xml::element( 'h2', null, wfMsg( 'email' ) ) ) .
754 $this->tableRow(
755 $emailauthenticated.
756 $enotifrevealaddr.
757 $enotifwatchlistpages.
758 $enotifusertalkpages.
759 $enotifminoredits.
760 $moreEmail
761 )
762 );
763 }
764 # </FIXME>
765
766 $wgOut->addHTML(
767 Xml::closeElement( 'table' ) .
768 Xml::closeElement( 'fieldset' )
769 );
770
771
772 # Quickbar
773 #
774 if ($this->mSkin == 'cologneblue' || $this->mSkin == 'standard') {
775 $wgOut->addHtml( "<fieldset>\n<legend>" . wfMsg( 'qbsettings' ) . "</legend>\n" );
776 for ( $i = 0; $i < count( $qbs ); ++$i ) {
777 if ( $i == $this->mQuickbar ) { $checked = ' checked="checked"'; }
778 else { $checked = ""; }
779 $wgOut->addHTML( "<div><label><input type='radio' name='wpQuickbar' value=\"$i\"$checked />{$qbs[$i]}</label></div>\n" );
780 }
781 $wgOut->addHtml( "</fieldset>\n\n" );
782 } else {
783 # Need to output a hidden option even if the relevant skin is not in use,
784 # otherwise the preference will get reset to 0 on submit
785 $wgOut->addHtml( wfHidden( 'wpQuickbar', $this->mQuickbar ) );
786 }
787
788 # Skin
789 #
790 $wgOut->addHTML( "<fieldset>\n<legend>\n" . wfMsg('skin') . "</legend>\n" );
791 $mptitle = Title::newMainPage();
792 $previewtext = wfMsg('skinpreview');
793 # Only show members of Skin::getSkinNames() rather than
794 # $skinNames (skins is all skin names from Language.php)
795 $validSkinNames = Skin::getSkinNames();
796 # Sort by UI skin name. First though need to update validSkinNames as sometimes
797 # the skinkey & UI skinname differ (e.g. "standard" skinkey is "Classic" in the UI).
798 foreach ($validSkinNames as $skinkey => & $skinname ) {
799 if ( isset( $skinNames[$skinkey] ) ) {
800 $skinname = $skinNames[$skinkey];
801 }
802 }
803 asort($validSkinNames);
804 foreach ($validSkinNames as $skinkey => $sn ) {
805 if ( in_array( $skinkey, $wgSkipSkins ) ) {
806 continue;
807 }
808 $checked = $skinkey == $this->mSkin ? ' checked="checked"' : '';
809
810 $mplink = htmlspecialchars($mptitle->getLocalURL("useskin=$skinkey"));
811 $previewlink = "<a target='_blank' href=\"$mplink\">$previewtext</a>";
812 if( $skinkey == $wgDefaultSkin )
813 $sn .= ' (' . wfMsg( 'default' ) . ')';
814 $wgOut->addHTML( "<input type='radio' name='wpSkin' id=\"wpSkin$skinkey\" value=\"$skinkey\"$checked /> <label for=\"wpSkin$skinkey\">{$sn}</label> $previewlink<br />\n" );
815 }
816 $wgOut->addHTML( "</fieldset>\n\n" );
817
818 # Math
819 #
820 global $wgUseTeX;
821 if( $wgUseTeX ) {
822 $wgOut->addHTML( "<fieldset>\n<legend>" . wfMsg('math') . '</legend>' );
823 foreach ( $mathopts as $k => $v ) {
824 $checked = ($k == $this->mMath);
825 $wgOut->addHTML(
826 Xml::openElement( 'div' ) .
827 Xml::radioLabel( wfMsg( $v ), 'wpMath', $k, "mw-sp-math-$k", $checked ) .
828 Xml::closeElement( 'div' ) . "\n"
829 );
830 }
831 $wgOut->addHTML( "</fieldset>\n\n" );
832 }
833
834 # Files
835 #
836 $wgOut->addHTML(
837 "<fieldset>\n" . Xml::element( 'legend', null, wfMsg( 'files' ) ) . "\n"
838 );
839
840 $imageLimitOptions = null;
841 foreach ( $wgImageLimits as $index => $limits ) {
842 $selected = ($index == $this->mImageSize);
843 $imageLimitOptions .= Xml::option( "{$limits[0]}×{$limits[1]}" .
844 wfMsg('unit-pixel'), $index, $selected );
845 }
846
847 $imageSizeId = 'wpImageSize';
848 $wgOut->addHTML(
849 "<div>" . Xml::label( wfMsg('imagemaxsize'), $imageSizeId ) . " " .
850 Xml::openElement( 'select', array( 'name' => $imageSizeId, 'id' => $imageSizeId ) ) .
851 $imageLimitOptions .
852 Xml::closeElement( 'select' ) . "</div>\n"
853 );
854
855 $imageThumbOptions = null;
856 foreach ( $wgThumbLimits as $index => $size ) {
857 $selected = ($index == $this->mThumbSize);
858 $imageThumbOptions .= Xml::option($size . wfMsg('unit-pixel'), $index,
859 $selected);
860 }
861
862 $thumbSizeId = 'wpThumbSize';
863 $wgOut->addHTML(
864 "<div>" . Xml::label( wfMsg('thumbsize'), $thumbSizeId ) . " " .
865 Xml::openElement( 'select', array( 'name' => $thumbSizeId, 'id' => $thumbSizeId ) ) .
866 $imageThumbOptions .
867 Xml::closeElement( 'select' ) . "</div>\n"
868 );
869
870 $wgOut->addHTML( "</fieldset>\n\n" );
871
872 # Date format
873 #
874 # Date/Time
875 #
876
877 $wgOut->addHTML(
878 Xml::openElement( 'fieldset' ) .
879 Xml::element( 'legend', null, wfMsg( 'datetime' ) ) . "\n"
880 );
881
882 if ($dateopts) {
883 $wgOut->addHTML(
884 Xml::openElement( 'fieldset' ) .
885 Xml::element( 'legend', null, wfMsg( 'dateformat' ) ) . "\n"
886 );
887 $idCnt = 0;
888 $epoch = '20010115161234'; # Wikipedia day
889 foreach( $dateopts as $key ) {
890 if( $key == 'default' ) {
891 $formatted = wfMsg( 'datedefault' );
892 } else {
893 $formatted = $wgLang->timeanddate( $epoch, false, $key );
894 }
895 $wgOut->addHTML(
896 Xml::tags( 'div', null,
897 Xml::radioLabel( $formatted, 'wpDate', $key, "wpDate$idCnt", $key == $this->mDate )
898 ) . "\n"
899 );
900 $idCnt++;
901 }
902 $wgOut->addHTML( Xml::closeElement( 'fieldset' ) . "\n" );
903 }
904
905 $nowlocal = $wgLang->time( $now = wfTimestampNow(), true );
906 $nowserver = $wgLang->time( $now, false );
907
908 $wgOut->addHTML(
909 Xml::openElement( 'fieldset' ) .
910 Xml::element( 'legend', null, wfMsg( 'timezonelegend' ) ) .
911 Xml::openElement( 'table' ) .
912 $this->addRow( wfMsg( 'servertime' ), $nowserver ) .
913 $this->addRow( wfMsg( 'localtime' ), $nowlocal ) .
914 $this->addRow(
915 Xml::label( wfMsg( 'timezoneoffset' ), 'wpHourDiff' ),
916 Xml::input( 'wpHourDiff', 6, $this->mHourDiff, array( 'id' => 'wpHourDiff' ) ) ) .
917 "<tr>
918 <td></td>
919 <td class='mw-submit'>" .
920 Xml::element( 'input',
921 array( 'type' => 'button',
922 'value' => wfMsg( 'guesstimezone' ),
923 'onclick' => 'javascript:guessTimezone()',
924 'id' => 'guesstimezonebutton',
925 'style' => 'display:none;' ) ) .
926 "</td>
927 </tr>" .
928 Xml::closeElement( 'table' ) .
929 Xml::tags( 'div', array( 'class' => 'prefsectiontip' ), wfMsgExt( 'timezonetext', 'parseinline' ) ).
930 Xml::closeElement( 'fieldset' ) .
931 Xml::closeElement( 'fieldset' ) . "\n\n"
932 );
933
934 # Editing
935 #
936 global $wgLivePreview;
937 $wgOut->addHTML( '<fieldset><legend>' . wfMsg( 'textboxsize' ) . '</legend>
938 <div>' .
939 wfInputLabel( wfMsg( 'rows' ), 'wpRows', 'wpRows', 3, $this->mRows ) .
940 ' ' .
941 wfInputLabel( wfMsg( 'columns' ), 'wpCols', 'wpCols', 3, $this->mCols ) .
942 "</div>" .
943 $this->getToggles( array(
944 'editsection',
945 'editsectiononrightclick',
946 'editondblclick',
947 'editwidth',
948 'showtoolbar',
949 'previewonfirst',
950 'previewontop',
951 'minordefault',
952 'externaleditor',
953 'externaldiff',
954 $wgLivePreview ? 'uselivepreview' : false,
955 'forceeditsummary',
956 ) ) . '</fieldset>'
957 );
958
959 # Recent changes
960 $wgOut->addHtml( '<fieldset><legend>' . wfMsgHtml( 'prefs-rc' ) . '</legend>' );
961
962 $rc = '<table><tr>';
963 $rc .= '<td>' . Xml::label( wfMsg( 'recentchangesdays' ), 'wpRecentDays' ) . '</td>';
964 $rc .= '<td>' . Xml::input( 'wpRecentDays', 3, $this->mRecentDays, array( 'id' => 'wpRecentDays' ) ) . '</td>';
965 $rc .= '</tr><tr>';
966 $rc .= '<td>' . Xml::label( wfMsg( 'recentchangescount' ), 'wpRecent' ) . '</td>';
967 $rc .= '<td>' . Xml::input( 'wpRecent', 3, $this->mRecent, array( 'id' => 'wpRecent' ) ) . '</td>';
968 $rc .= '</tr></table>';
969 $wgOut->addHtml( $rc );
970
971 $wgOut->addHtml( '<br />' );
972
973 $toggles[] = 'hideminor';
974 if( $wgRCShowWatchingUsers )
975 $toggles[] = 'shownumberswatching';
976 $toggles[] = 'usenewrc';
977 $wgOut->addHtml( $this->getToggles( $toggles ) );
978
979 $wgOut->addHtml( '</fieldset>' );
980
981 # Watchlist
982 $wgOut->addHtml( '<fieldset><legend>' . wfMsgHtml( 'prefs-watchlist' ) . '</legend>' );
983
984 $wgOut->addHtml( wfInputLabel( wfMsg( 'prefs-watchlist-days' ), 'wpWatchlistDays', 'wpWatchlistDays', 3, $this->mWatchlistDays ) );
985 $wgOut->addHtml( '<br /><br />' );
986
987 $wgOut->addHtml( $this->getToggle( 'extendwatchlist' ) );
988 $wgOut->addHtml( wfInputLabel( wfMsg( 'prefs-watchlist-edits' ), 'wpWatchlistEdits', 'wpWatchlistEdits', 3, $this->mWatchlistEdits ) );
989 $wgOut->addHtml( '<br /><br />' );
990
991 $wgOut->addHtml( $this->getToggles( array( 'watchlisthideown', 'watchlisthidebots', 'watchlisthideminor' ) ) );
992
993 if( $wgUser->isAllowed( 'createpage' ) || $wgUser->isAllowed( 'createtalk' ) )
994 $wgOut->addHtml( $this->getToggle( 'watchcreations' ) );
995 foreach( array( 'edit' => 'watchdefault', 'move' => 'watchmoves', 'delete' => 'watchdeletion' ) as $action => $toggle ) {
996 if( $wgUser->isAllowed( $action ) )
997 $wgOut->addHtml( $this->getToggle( $toggle ) );
998 }
999 $this->mUsedToggles['watchcreations'] = true;
1000 $this->mUsedToggles['watchdefault'] = true;
1001 $this->mUsedToggles['watchmoves'] = true;
1002 $this->mUsedToggles['watchdeletion'] = true;
1003
1004 $wgOut->addHtml( '</fieldset>' );
1005
1006 # Search
1007 $ajaxsearch = $wgAjaxSearch ?
1008 $this->addRow(
1009 Xml::label( wfMsg( 'useajaxsearch' ), 'wpUseAjaxSearch' ),
1010 Xml::check( 'wpUseAjaxSearch', $this->mUseAjaxSearch, array( 'id' => 'wpUseAjaxSearch' ) )
1011 ) : '';
1012 $mwsuggest = $wgEnableMWSuggest ?
1013 $this->addRow(
1014 Xml::label( wfMsg( 'mwsuggest-disable' ), 'wpDisableMWSuggest' ),
1015 Xml::check( 'wpDisableMWSuggest', $this->mDisableMWSuggest, array( 'id' => 'wpDisableMWSuggest' ) )
1016 ) : '';
1017 $wgOut->addHTML(
1018 Xml::openElement( 'fieldset' ) .
1019 Xml::element( 'legend', null, wfMsg( 'searchresultshead' ) ) .
1020 Xml::openElement( 'table' ) .
1021 $ajaxsearch .
1022 $this->addRow(
1023 Xml::label( wfMsg( 'resultsperpage' ), 'wpSearch' ),
1024 Xml::input( 'wpSearch', 4, $this->mSearch, array( 'id' => 'wpSearch' ) )
1025 ) .
1026 $this->addRow(
1027 Xml::label( wfMsg( 'contextlines' ), 'wpSearchLines' ),
1028 Xml::input( 'wpSearchLines', 4, $this->mSearchLines, array( 'id' => 'wpSearchLines' ) )
1029 ) .
1030 $this->addRow(
1031 Xml::label( wfMsg( 'contextchars' ), 'wpSearchChars' ),
1032 Xml::input( 'wpSearchChars', 4, $this->mSearchChars, array( 'id' => 'wpSearchChars' ) )
1033 ) .
1034 $mwsuggest .
1035 Xml::closeElement( 'table' ) .
1036 Xml::openElement( 'fieldset' ) .
1037 Xml::element( 'legend', null, wfMsg( 'defaultns' ) ) .
1038 $ps .
1039 Xml::closeElement( 'fieldset' ) .
1040 Xml::closeElement( 'fieldset' )
1041 );
1042
1043 # Misc
1044 #
1045 $wgOut->addHTML('<fieldset><legend>' . wfMsg('prefs-misc') . '</legend>');
1046 $wgOut->addHtml( '<label for="wpStubs">' . wfMsg( 'stub-threshold' ) . '</label>&nbsp;' );
1047 $wgOut->addHtml( Xml::input( 'wpStubs', 6, $this->mStubs, array( 'id' => 'wpStubs' ) ) );
1048 $msgUnderline = htmlspecialchars( wfMsg ( 'tog-underline' ) );
1049 $msgUnderlinenever = htmlspecialchars( wfMsg ( 'underline-never' ) );
1050 $msgUnderlinealways = htmlspecialchars( wfMsg ( 'underline-always' ) );
1051 $msgUnderlinedefault = htmlspecialchars( wfMsg ( 'underline-default' ) );
1052 $uopt = $wgUser->getOption("underline");
1053 $s0 = $uopt == 0 ? ' selected="selected"' : '';
1054 $s1 = $uopt == 1 ? ' selected="selected"' : '';
1055 $s2 = $uopt == 2 ? ' selected="selected"' : '';
1056 $wgOut->addHTML("
1057 <div class='toggle'><p><label for='wpOpunderline'>$msgUnderline</label>
1058 <select name='wpOpunderline' id='wpOpunderline'>
1059 <option value=\"0\"$s0>$msgUnderlinenever</option>
1060 <option value=\"1\"$s1>$msgUnderlinealways</option>
1061 <option value=\"2\"$s2>$msgUnderlinedefault</option>
1062 </select></p></div>");
1063
1064 foreach ( $togs as $tname ) {
1065 if( !array_key_exists( $tname, $this->mUsedToggles ) ) {
1066 $wgOut->addHTML( $this->getToggle( $tname ) );
1067 }
1068 }
1069 $wgOut->addHTML( '</fieldset>' );
1070
1071 wfRunHooks( 'RenderPreferencesForm', array( $this, $wgOut ) );
1072
1073 $token = htmlspecialchars( $wgUser->editToken() );
1074 $skin = $wgUser->getSkin();
1075 $wgOut->addHTML( "
1076 <div id='prefsubmit'>
1077 <div>
1078 <input type='submit' name='wpSaveprefs' class='btnSavePrefs' value=\"" . wfMsgHtml( 'saveprefs' ) . '"'.$skin->tooltipAndAccesskey('save')." />
1079 <input type='submit' name='wpReset' value=\"" . wfMsgHtml( 'resetprefs' ) . "\" />
1080 </div>
1081
1082 </div>
1083
1084 <input type='hidden' name='wpEditToken' value=\"{$token}\" />
1085 </div></form>\n" );
1086
1087 $wgOut->addHtml( Xml::tags( 'div', array( 'class' => "prefcache" ),
1088 wfMsgExt( 'clearyourcache', 'parseinline' ) )
1089 );
1090 }
1091 }