https://bugzilla.wikimedia.org/show_bug.cgi?id=17035
^demon <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from ^demon <[email protected]> 2009-01-15 20:43:02 UTC --- Right now in execute(), we check if $wgEnableUploads is true, then we output the 'uploaddisabled' message if not: if( !$wgEnableUploads ) { To the end users, there's no difference in _why_ it is disabled, so I would think the generic disabled message could be used here. A simple change to: if( !$wgEnableUploads || !wfIniGetBool( 'file_uploads' ) ) { should do it? -- 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
