https://bugzilla.wikimedia.org/show_bug.cgi?id=18761
^demon <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Status|NEW |RESOLVED Resolution| |WONTFIX --- Comment #2 from ^demon <[email protected]> 2009-05-11 21:08:57 UTC --- Per Niklas, this isn't really needed, so marking as WONTFIX. However, this can be easily accomplished for any single preference a wiki admin wants to hide. In LocalSettings: > > $wgHooks['GetPreferences'][] = 'hookfunc'; > > function hookfunc( &$user, &$prefs ) { > if ( isset( $prefs['gender'] ) ) { > unset( $prefs['gender'] ); > } > return true; > } And 'gender' can be replaced with any of the preference keys. -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
