r84282 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r84281
|
r84282
|
r84283
>
Date:
22:54, 18 March 2011
Author:
neilk
Status:
deferred
Tags:
Comment:
got the direction of this inequality wrong
Modified paths:
/trunk/extensions/UploadWizard/resources/mw.Log.js
(modified) (
history
)
Diff
[
purge
]
Index: trunk/extensions/UploadWizard/resources/mw.Log.js
—
—
@@ -31,7 +31,7 @@
32
32
fatal: 10,
33
33
warn: 20,
34
34
info: 30,
35
- debug: 100,
35
+ debug: 100
36
36
};
37
37
38
38
/**
—
—
@@ -54,7 +54,7 @@
55
55
}
56
56
57
57
// don't show log message if lower priority than mw.log.level
58
- if ( priority[ mw.log.level ] > priority[ level ] ) {
58
+ if ( priority[ mw.log.level ] <= priority[ level ] ) {
59
59
return;
60
60
}
61
61
Status & tagging log
22:35, 15 April 2011
Reedy
(
talk
|
contribs
)
changed the
status
of r84282
[
removed:
new
added:
deferred]