mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-23 10:28:55 +00:00
...
git-svn-id: file:///svn/phpbb/trunk@8159 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
4cce6105c2
commit
ab27966a60
2 changed files with 8 additions and 2 deletions
|
@ -2191,6 +2191,12 @@ if (utf8_case_fold_nfc($string1) == utf8_case_fold_nfc($string2))
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
|
||||||
|
<h3>Revision 1.31</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>Added add_form_key and check_form_key. </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<h3>Revision 1.24</h3>
|
<h3>Revision 1.24</h3>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
|
|
|
@ -141,7 +141,7 @@ class ucp_register
|
||||||
'S_REGISTRATION' => true,
|
'S_REGISTRATION' => true,
|
||||||
'S_HIDDEN_FIELDS' => build_hidden_fields($s_hidden_fields),
|
'S_HIDDEN_FIELDS' => build_hidden_fields($s_hidden_fields),
|
||||||
'S_UCP_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=register' . $add_lang . $add_coppa),
|
'S_UCP_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=register' . $add_lang . $add_coppa),
|
||||||
'S_TIME' => 1000 * (int)$config['min_time_terms'],
|
'S_TIME' => 1000 * ((int) $config['min_time_terms']),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -529,7 +529,7 @@ class ucp_register
|
||||||
'S_COPPA' => $coppa,
|
'S_COPPA' => $coppa,
|
||||||
'S_HIDDEN_FIELDS' => $s_hidden_fields,
|
'S_HIDDEN_FIELDS' => $s_hidden_fields,
|
||||||
'S_UCP_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=register'),
|
'S_UCP_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=register'),
|
||||||
'S_TIME' => 1000 * (int)$config['min_time_reg'],
|
'S_TIME' => 1000 * ((int) $config['min_time_reg']),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue