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 @@
20692069 $start = $startend[0];
20702070 $end = $startend[1];
20712071
2072 - return (($unsignedIP >= $start) && ($unsignedip <= $end));
 2072+ return (($unsignedIP >= $start) && ($unsignedIP <= $end));
20732073 }
20742074
20752075 /*