diff --git a/docs/simplesamlphp-install.txt b/docs/simplesamlphp-install.txt index e065ccf43d94fbce531ad9470cd947b5f2eda704..ac99cd3de050958fb6992efdcb03332c0d1d380b 100644 --- a/docs/simplesamlphp-install.txt +++ b/docs/simplesamlphp-install.txt @@ -32,7 +32,7 @@ Prerequisites ------------- * Some webserver capable of executing PHP scripts. - * PHP version >= 5.2.0 if you are using simpleSAMLphp as an SP connected to a Shibboleth IdP; PHP version >= 5.1.2 if not. + * PHP version >= 5.2.0. * Suppoort for the following PHP extensions: * Always required: `date`, `dom`, `hash`, `libxml`, `openssl`, `pcre`, `SPL`, `zlib` * When encrypting assertions: `mcrypt` diff --git a/modules/core/www/frontpage_config.php b/modules/core/www/frontpage_config.php index 856144e756747ebfdd1c14cb0839b13f44a1cde8..453fba3d9d4983f41a5a822344479f32d25a72bb 100644 --- a/modules/core/www/frontpage_config.php +++ b/modules/core/www/frontpage_config.php @@ -88,11 +88,7 @@ $functionchecks = array( $funcmatrix = array(); $funcmatrix[] = array( 'required' => 'required', - 'descr' => 'PHP Version >= 5.1.2. You run: ' . phpversion(), - 'enabled' => version_compare(phpversion(), '5.1.2', '>=')); -$funcmatrix[] = array( - 'required' => 'reccomended', - 'descr' => 'PHP Version >= 5.2 (Required for Shibboleth 1.3 SP)', + 'descr' => 'PHP Version >= 5.2. You run: ' . phpversion(), 'enabled' => version_compare(phpversion(), '5.2', '>=')); foreach ($functionchecks AS $func => $descr) { $funcmatrix[] = array('descr' => $descr[1], 'required' => $descr[0], 'enabled' => function_exists($func));