Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mantisbt/mantisbt into maturbet-d…
Browse files Browse the repository at this point in the history
…isableoptionproject
  • Loading branch information
maturbet committed Jun 3, 2020
2 parents 65e5a7f + 778af39 commit b8bb063
Show file tree
Hide file tree
Showing 99 changed files with 6,149 additions and 408 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -17,10 +17,10 @@ before_install:
- if php -r "exit( (int)! version_compare( '$TRAVIS_PHP_VERSION', '7.0', '>=' ) );"; then mkdir -p ~/bin && wget -O ~/bin/phpunit https://phar.phpunit.de/phpunit-5.7.phar && chmod +x ~/bin/phpunit; fi

before_script:
- ./build-scripts/travis_before_script.sh
- ./build/travis_before_script.sh

script:
- ./build-scripts/travis_script.sh
- ./build/travis_script.sh

# -----------------------------------------------------------------------------
# What to build, and on which platforms
Expand Down
696 changes: 696 additions & 0 deletions KEYS.md

Large diffs are not rendered by default.

15 changes: 2 additions & 13 deletions admin/check/check_php_inc.php
Expand Up @@ -51,7 +51,8 @@
'pcre',
'Reflection',
'session',
'mbstring'
'mbstring',
'json'
);

foreach( $t_extensions_required as $t_extension ) {
Expand Down Expand Up @@ -115,18 +116,6 @@
array( false => 'The value of this directive is currently: ' . $t_variables_order )
);

check_print_test_row(
'magic_quotes_gpc php.ini directive is disabled',
!( function_exists( 'get_magic_quotes_gpc' ) && @get_magic_quotes_gpc() ),
array( false => 'PHP\'s magic quotes feature is <a href="http://www.php.net/manual/en/security.magicquotes.whynot.php">deprecated in PHP 5.3.0</a> and should not be used.' )
);

check_print_test_row(
'magic_quotes_runtime php.ini directive is disabled',
!( function_exists( 'get_magic_quotes_runtime' ) && @get_magic_quotes_runtime() ),
array( false => 'PHP\'s magic quotes feature is <a href="http://www.php.net/manual/en/security.magicquotes.whynot.php">deprecated in PHP 5.3.0</a> and should not be used.' )
);

check_print_test_warn_row(
'register_argc_argv php.ini directive is disabled',
!ini_get_bool( 'register_argc_argv' ),
Expand Down

0 comments on commit b8bb063

Please sign in to comment.