No feedback from the failed numeric test for incorrect server settings

pull/304/merge
iglocska 2014-09-11 13:02:38 +02:00
parent fa367febfa
commit b69e51e867
1 changed files with 1 additions and 1 deletions

View File

@ -891,7 +891,7 @@ class Server extends AppModel {
}
public function testForNumeric($value) {
if (!is_numeric($value)) return false;
if (!is_numeric($value)) return 'This setting has to be a number.';
return true;
}