]> git.immae.eu Git - perso/Immae/Config/Nix/NUR.git/blob - pkgs/webapps/mantisbt_2/bug_report.php.diff
Initial commit published for NUR
[perso/Immae/Config/Nix/NUR.git] / pkgs / webapps / mantisbt_2 / bug_report.php.diff
1 --- a/bug_report.php 2019-05-06 12:06:44.265508011 +0200
2 +++ b/bug_report.php 2019-05-06 12:09:40.106952738 +0200
3 @@ -67,6 +67,17 @@
4 'copy_files' => $f_copy_attachments_from_parent
5 );
6
7 +# begin captcha check for anon user
8 +if ( current_user_is_anonymous() && get_gd_version() > 0 ) {
9 + $f_captcha = gpc_get_string( 'captcha', '' );
10 + $f_captcha = utf8_strtolower( trim( $f_captcha ) );
11 +
12 + $t_securimage = new Securimage();
13 + if( $t_securimage->check( $f_captcha ) == false ) {
14 + trigger_error( ERROR_SIGNUP_NOT_MATCHING_CAPTCHA, ERROR );
15 + }
16 +}
17 +
18 if( $f_master_bug_id > 0 ) {
19 bug_ensure_exists( $f_master_bug_id );
20