diff --git a/public_html/index.php b/public_html/index.php
index b543aa4..d87dc59 100644
--- a/public_html/index.php
+++ b/public_html/index.php
@@ -220,7 +220,7 @@ try {
$runner = new \App\Core\MigrationRunner($db, $migrationsDir);
if ($runner->hasPendingMigrations()) {
$pending = $runner->listPendingMigrations();
- $msg = 'Database schema is out of date. There are pending migrations. Run "php scripts/migrate.php up" or use the Admin center';
+ $msg = 'Database schema is out of date. There are pending migrations. Run "php scripts/migrate.php up" or use the Admin center';
// Check if migration message already exists to prevent duplicates
$hasMigrationMessage = false;
if (isset($_SESSION['flash_messages'])) {
@@ -299,7 +299,7 @@ try {
if (!empty($maintMsg)) {
$custom .= ' ' . htmlspecialchars($maintMsg) . '';
}
- $custom .= ' Control it from the Admin center';
+ $custom .= ' Control it from the Admin center';
// Non-dismissible and small, do not sanitize to allow link and
Feedback::flash('SYSTEM', 'MAINTENANCE_ON', $custom, false, true, false);
}