1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-19 20:21:51 +02:00

Change references from e107help.org to Github Discussions area

This commit is contained in:
Moc 2022-10-01 13:52:00 +02:00
parent a1f6de6a37
commit f2f8877a05
No known key found for this signature in database
GPG Key ID: AAEA3CC2C5A308F2
2 changed files with 9 additions and 3 deletions

View File

@ -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.

View File

@ -462,13 +462,13 @@ TMPO;
if($numDays < 3) // installed in the past 3 days.
{
$srch = array('[',']');
$repl = array("<a href='http://e107help.org' target='_blank' rel='external'>","</a>");
$repl = array("<a href='https://github.com/e107inc/e107/discussions' target='_blank' rel='external'>","</a>");
echo e107::getMessage()->setTitle(ADLAN_190,E_MESSAGE_INFO)->addInfo("<p>".str_replace($srch,$repl,ADLAN_192)."</p>")->render();
}
elseif($pref < $v2ReleaseDate && !file_exists($upgradeAlertFlag)) // installed prior to v2 release.
{
$srch = array('[',']');
$repl = array("<a href='http://e107help.org' target='_blank' rel='external'>","</a>");
$repl = array("<a href='https://github.com/e107inc/e107/discussions' target='_blank' rel='external'>","</a>");
$message = str_replace($srch,$repl,ADLAN_191);
$message .= "<div class='text-right'><a class='btn btn-xs btn-primary ' href='admin.php?dismiss=upgrade'>".LAN_DONT_SHOW_AGAIN."</a></div>"; //todo do it with class=e-ajax and data-dismiss='alert'
echo e107::getMessage()->setTitle(LAN_UPGRADING,E_MESSAGE_INFO)->addInfo($message)->render();