missing paren

This commit is contained in:
Harald Milz 2019-03-26 09:17:15 +01:00
parent 78eb90d094
commit c93debfd5c

View file

@ -41,7 +41,7 @@ function gcal_import_worker()
global $wpdb;
$table = $wpdb->prefix.GCAL_TABLE;
$categories = $wpdb->get_results("SELECT gcal_category from $table");
if (empty($categories) {
if (empty($categories)) {
error_log ("keine Einträge in $wpdb->prefix.GCAL_TABLE gefunden.");
return (0);
}