From: Hypolite Petovan Date: Sun, 15 Jul 2018 16:44:19 +0000 (-0400) Subject: Fix typo in mod/admin X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b260ca4d1eb3807ea2bbe9f07ceaa979da400245;hp=c207f6d59732e690b9e7ff68c5e6eeb0c6488a79;p=friendica.git Fix typo in mod/admin --- diff --git a/mod/admin.php b/mod/admin.php index da50007131..77a5aada7f 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -848,7 +848,7 @@ function admin_page_summary(App $a) // Legacy config file warning if (file_exists('.htconfig.php')) { $showwarning = true; - $warningtext[] = L10n::t('Friencia\'s configuration now is stored in config/local.ini.php, please copy config/local-sample.ini.php and move your config from .htconfig.php.'); + $warningtext[] = L10n::t('Friendica\'s configuration now is stored in config/local.ini.php, please copy config/local-sample.ini.php and move your config from .htconfig.php.'); } $r = q("SELECT `page-flags`, COUNT(`uid`) AS `count` FROM `user` GROUP BY `page-flags`");