1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-14 17:39:46 +01:00

Merge pull request #3839 from yesszus/patch-1

Some corrections
This commit is contained in:
Cameron 2019-06-13 17:08:16 -07:00 committed by GitHub
commit baa1c8c485
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -57,7 +57,7 @@ class _system_cron
} }
else else
{ {
$mes->addError("No git repo found"); //TODO LAN $mes->addError(LAN_CRON_66);
} }
$fl->chmod(e_BASE."cron.php",0755); $fl->chmod(e_BASE."cron.php",0755);
@ -90,7 +90,7 @@ class _system_cron
} }
else else
{ {
$mes->addError("No git repo found in theme folder"); //TODO LAN $mes->addError(LAN_CRON_67);
} }
} }

View File

@ -105,4 +105,5 @@ define("LAN_CRON_LOGGING", "Logging");
define("LAN_CRON_RUNNING", "Running"); define("LAN_CRON_RUNNING", "Running");
define("LAN_CRON_65", "Update git theme repository"); define("LAN_CRON_65", "Update git theme repository");
define("LAN_CRON_66", "No git repo found");
define("LAN_CRON_67", "No git repo found in theme folder");