diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-01-15 00:13:46 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-01-15 00:13:46 +0100 |
commit | b72df1f384c778c9e54d1aa74600142e224c18e6 (patch) | |
tree | 78a96609e4133642e3f870c318da8c64ca3a4e53 /phpBB/phpbb | |
parent | d226059b988fd5f8963858ca698253ad6c77fea0 (diff) | |
parent | 02b5873442de90b1d38eced87ecc7f9d780794d2 (diff) | |
download | forums-b72df1f384c778c9e54d1aa74600142e224c18e6.tar forums-b72df1f384c778c9e54d1aa74600142e224c18e6.tar.gz forums-b72df1f384c778c9e54d1aa74600142e224c18e6.tar.bz2 forums-b72df1f384c778c9e54d1aa74600142e224c18e6.tar.xz forums-b72df1f384c778c9e54d1aa74600142e224c18e6.zip |
Merge pull request #4645 from rmcgirr83/ticket/15010
[ticket/15010] Fix incorrect use of request
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_date.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/profilefields/type/type_date.php b/phpBB/phpbb/profilefields/type/type_date.php index 414484920b..139ceabeec 100644 --- a/phpBB/phpbb/profilefields/type/type_date.php +++ b/phpBB/phpbb/profilefields/type/type_date.php @@ -72,7 +72,7 @@ class type_date extends type_base 'lang_options' => $field_data['lang_options'], ); - $always_now = $request->variable('always_now', -1); + $always_now = $this->request->variable('always_now', -1); if ($always_now == -1) { $s_checked = ($field_data['field_default_value'] == 'now') ? true : false; |