# HG changeset patch # User Dan # Date 1204996403 18000 # Node ID 00f5cd31217aef8659477c95619745fa93fd5aa6 # Parent 6c78cc4560910736beb11559e1640712b3c80369 Fixed undefined variable ($row['is_regex'] instead of $is_regex) in sessions.php diff -r 6c78cc456091 -r 00f5cd31217a includes/sessions.php --- a/includes/sessions.php Sat Mar 08 12:12:27 2008 -0500 +++ b/includes/sessions.php Sat Mar 08 12:13:23 2008 -0500 @@ -1702,7 +1702,7 @@ { while ( list($reason_temp, $ban_value, $ban_type, $is_regex) = $db->fetchrow_num() ) { - if ( $ban_type == BAN_IP && $row['is_regex'] != 1 ) + if ( $ban_type == BAN_IP && $is_regex != 1 ) { // check range $regexp = parse_ip_range_regex($ban_value);