diff --git a/core/sanitize_php.php b/core/sanitize_php.php index f83d694d..8a5b2e3d 100644 --- a/core/sanitize_php.php +++ b/core/sanitize_php.php @@ -31,7 +31,7 @@ function die_nicely($title, $body, $code=0) $min_php = "7.3"; if (version_compare(phpversion(), $min_php, ">=") === false) { - die_nicely("Not Supported", " + die_nicely("Not Supported", " Shimmie does not support versions of PHP lower than $min_php (PHP reports that it is version ".phpversion()."). ", 1); diff --git a/ext/bulk_import_export/main.php b/ext/bulk_import_export/main.php index f4dffdc4..afe30984 100644 --- a/ext/bulk_import_export/main.php +++ b/ext/bulk_import_export/main.php @@ -19,7 +19,7 @@ class BulkImportExport extends DataHandlerExtension if ($zip->open($event->tmpname) === true) { $json_data = $this->get_export_data($zip); - if(empty($json_data)) { + if (empty($json_data)) { return; } @@ -180,5 +180,4 @@ class BulkImportExport extends DataHandlerExtension return null; } } - }