aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2009-11-07 15:11:40 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2009-11-07 15:11:40 +0000
commit0382b08fe2e5fd28296cb3989ec72a01321d2fe1 (patch)
treeaa6b86c176a4ed92a6d416c2c45cc64ffc53b3b6
parentb35b4063f405729fc391cf2d53d376bc95e493d8 (diff)
downloadforums-0382b08fe2e5fd28296cb3989ec72a01321d2fe1.tar
forums-0382b08fe2e5fd28296cb3989ec72a01321d2fe1.tar.gz
forums-0382b08fe2e5fd28296cb3989ec72a01321d2fe1.tar.bz2
forums-0382b08fe2e5fd28296cb3989ec72a01321d2fe1.tar.xz
forums-0382b08fe2e5fd28296cb3989ec72a01321d2fe1.zip
fix whitespaces/tabs in r10256
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10257 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/docs/CHANGELOG.html2
-rw-r--r--phpBB/memberlist.php6
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index f824d25e53..c28611fd6b 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -213,7 +213,7 @@
<li>[Fix] Fixed database updater for changes to columns having default value in MSSQL (adding/dropping constraints).</li>
<li>[Fix] Jabber SASL PLAIN authentication failures. (Bug #52995)</li>
<li>[Fix] Check sort options on memberlist to avoid a general error. (Bug #53655)</li>
- <li>[Change] Database updater now supports checking for existing/missing indexes.</li>
+ <li>[Change] Database updater now supports checking for existing/missing indexes.</li>
<li>[Change] submit_post() now accepts force_approved_state key passed to $data to indicate new posts being approved (true) or unapproved (false).</li>
<li>[Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.</li>
<li>[Change] Template engine now permits variable includes to a limited extent.</li>
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php
index eaaf19a14b..7cffbfd854 100644
--- a/phpBB/memberlist.php
+++ b/phpBB/memberlist.php
@@ -975,12 +975,12 @@ switch ($mode)
$msn = request_var('msn', '');
$jabber = request_var('jabber', '');
$search_group_id = request_var('search_group_id', 0);
-
- // when using these, make sure that actually have values defined in $find_key_match
+
+ // when using these, make sure that we actually have values defined in $find_key_match
$joined_select = request_var('joined_select', 'lt');
$active_select = request_var('active_select', 'lt');
$count_select = request_var('count_select', 'eq');
-
+
$joined = explode('-', request_var('joined', ''));
$active = explode('-', request_var('active', ''));
$count = (request_var('count', '') !== '') ? request_var('count', 0) : '';