Skip to content
Snippets Groups Projects
Commit e1268cd5 authored by Frank Karlitschek's avatar Frank Karlitschek
Browse files

we require php 5.3 now. so please notify the user if an old version is in use

parent 051cb7d9
No related branches found
No related tags found
No related merge requests found
......@@ -243,6 +243,9 @@ class OC_Util {
if(!function_exists('imagepng')){
$errors[]=array('error'=>'PHP module GD is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.');
}
if(floatval(phpversion())<5.3){
$errors[]=array('error'=>'PHP 5.3 is required.<br/>','hint'=>'Please ask your server administrator to update PHP to version 5.3 or higher. PHP 5.2 is no longer supported by ownCloud and the PHP community.');
}
return $errors;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment