r66589 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r66588
|
r66589
|
r66590
>
Date:
21:45, 17 May 2010
Author:
hartman
Status:
ok
Tags:
Comment:
Follow up
r66566
. Fixes uninited value check
Modified paths:
/trunk/phase3/includes/Skin.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/Skin.php
—
—
@@ -1994,7 +1994,7 @@
1995
1995
if( $wgUploadNavigationUrl ) {
1996
1996
$title = Title::newFromText( $wgUploadNavigationUrl );
1997
1997
}
1998
- if( !$title ) {
1998
+ if( !isset( $title ) ) {
1999
1999
$title = SpecialPage::getTitleFor('Upload');
2000
2000
}
2001
2001
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r66566
Let old skins take into account $wgUploadNavigationUrl....
hartman
15:15, 17 May 2010
Status & tagging log
12:07, 13 November 2010
Hashar
(
talk
|
contribs
)
changed the
status
of r66589
[
removed:
new
added:
ok]