From f2f8877a053efec1b13dcc478b460ee6bf351fd3 Mon Sep 17 00:00:00 2001 From: Moc Date: Sat, 1 Oct 2022 13:52:00 +0200 Subject: [PATCH] Change references from e107help.org to Github Discussions area --- README.md | 8 +++++++- e107_admin/admin.php | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cec296060..2cd6cd3e5 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,13 @@ If you like e107 and wish to help it to improve, please consider making a small ## Support -* https://e107help.org +Having trouble getting e107 up and running? Something not working the way you think it should? Unfortunately we don't have time to maintain a full e107 support community ourselves, but there are a few ways to get help. + +* If you think you have found a bug, then please see the section below on Reporting Bugs. +* If you need help with how to use e107 or a development question (such as how to create a theme or plugin) - please see our [docs](https://e107.org/developer-manual). +* You can also seek assistance in the [Github Discussions](https://github.com/e107inc/e107/discussions) area where you can get friendly community support from other users. +* For real-time technical chat, and community support, please visit us on [Gitter](https://gitter.im/e107inc/e107). +* For other comments, please use our official community presences on Facebook, and Twitter as well as unofficial community presences on Google+ and Reddit. diff --git a/e107_admin/admin.php b/e107_admin/admin.php index 211c4dc04..63366e278 100644 --- a/e107_admin/admin.php +++ b/e107_admin/admin.php @@ -462,13 +462,13 @@ TMPO; if($numDays < 3) // installed in the past 3 days. { $srch = array('[',']'); - $repl = array("",""); + $repl = array("",""); echo e107::getMessage()->setTitle(ADLAN_190,E_MESSAGE_INFO)->addInfo("

".str_replace($srch,$repl,ADLAN_192)."

")->render(); } elseif($pref < $v2ReleaseDate && !file_exists($upgradeAlertFlag)) // installed prior to v2 release. { $srch = array('[',']'); - $repl = array("",""); + $repl = array("",""); $message = str_replace($srch,$repl,ADLAN_191); $message .= "
".LAN_DONT_SHOW_AGAIN."
"; //todo do it with class=e-ajax and data-dismiss='alert' echo e107::getMessage()->setTitle(LAN_UPGRADING,E_MESSAGE_INFO)->addInfo($message)->render();