Added missing error messages to spamfilter white and blacklist.
Set version number to 3.0.1.3
| | |
| | | -- Dumping data for table `sys_config` |
| | | -- |
| | | |
| | | INSERT INTO sys_config VALUES ('1','db','db_version','3.0.1'); |
| | | INSERT INTO sys_config VALUES ('1','db','db_version','3.0.1.3'); |
| | | |
| | | -- -------------------------------------------------------- |
| | | |
| | |
| | | |
| | | //** Application |
| | | define('ISPC_APP_TITLE', 'ISPConfig'); |
| | | define('ISPC_APP_VERSION', '3.0.1'); |
| | | define('ISPC_APP_VERSION', '3.0.1.3'); |
| | | |
| | | |
| | | //** Database |
| | |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["priority_txt"] = 'Priority'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'The max. number of White- or Blacklist records for your account is reached.'; |
| | | ?> |
| | |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["priority_txt"] = 'Priority'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'The max. number of White- or Blacklist records for your account is reached.'; |
| | | ?> |
| | |
| | | if($client["limit_spamfilter_wblist"] >= 0) { |
| | | $tmp = $app->db->queryOneRecord("SELECT count(wblist_id) as number FROM spamfilter_wblist WHERE sys_groupid = $client_group_id"); |
| | | if($tmp["number"] >= $client["limit_spamfilter_wblist"]) { |
| | | $app->error($app->tform->wordbook["limit_spamfilter_wblist_txt"]); |
| | | $app->error($app->tform->lng("limit_spamfilter_wblist_txt")); |
| | | } |
| | | } |
| | | } |
| | |
| | | if($client["limit_spamfilter_wblist"] >= 0) { |
| | | $tmp = $app->db->queryOneRecord("SELECT count(wblist_id) as number FROM spamfilter_wblist WHERE sys_groupid = $client_group_id"); |
| | | if($tmp["number"] >= $client["limit_spamfilter_wblist"]) { |
| | | $app->error($app->tform->wordbook["limit_spamfilter_wblist_txt"]); |
| | | $app->error($app->tform->lng("limit_spamfilter_wblist_txt")); |
| | | } |
| | | } |
| | | } |