r17881 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r17880
|
r17881
|
r17882
>
Date:
08:30, 23 November 2006
Author:
nickj
Status:
old
Tags:
Comment:
Probable bug in wfIsAddressInRange() - $unsignedIP and $unsignedip are not the same thing. One is defined, and the other is undefined / null.
Modified paths:
/trunk/phase3/includes/GlobalFunctions.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/GlobalFunctions.php
—
—
@@ -2068,7 +2068,7 @@
2069
2069
$start = $startend[0];
2070
2070
$end = $startend[1];
2071
2071
2072
- return (($unsignedIP >= $start) && ($unsignedip <= $end));
2072
+ return (($unsignedIP >= $start) && ($unsignedIP <= $end));
2073
2073
}
2074
2074
2075
2075
/*