Fix broken links (#13625)

fixes #13624
This commit is contained in:
Tony Murray
2021-12-15 19:49:02 -06:00
committed by GitHub
parent d5656d826e
commit df123c62c2
2 changed files with 9 additions and 3 deletions

View File

@@ -77,7 +77,7 @@
<h3>{{ __('Contributors') }}</h3>
<p>{{ __('See the <a href=":url">list of contributors</a> on GitHub.', ['url' => 'https://github.com/librenms/librenms/blob/master/AUTHORS.md']) }}</p>
<p>{!! __('See the <a href=":url">list of contributors</a> on GitHub.', ['url' => 'https://github.com/librenms/librenms/graphs/contributors']) !!}</p>
<h3>{{ __('Acknowledgements') }}</h3>

View File

@@ -65,7 +65,11 @@
<div class="col-12">
<div class="alert alert-warning">
<p>{{ __('install.finish.not_finished') }}</p>
<p>{{ __('install.finish.validate', ['validate' => '<a href="' . url('validate') . '">' . __('install.finish.validate_link') . '</a>']) }}</p>
<p>
{{ explode('|', __('install.finish.validate', ['validate' => '|']), 2)[0] }}
<a href="{{ url('validate') }}">{{ __('install.finish.validate_link') }}</a>
{{ explode('|', __('install.finish.validate', ['validate' => '|']), 2)[1] }}
</p>
</div>
</div>
</div>
@@ -73,7 +77,9 @@
<div class="col-12">
<div class="alert alert-success">
<p>{{ __('install.finish.thanks') }}</p>
<p>{{ __('install.finish.statistics', ['about' => '<a href="' . url('about') . '">' . __('install.finish.statistics_link') . '</a>']) }}</p>
{{ explode('|', __('install.finish.statistics', ['about' => '|']), 2)[0] }}
<a href="{{ url('about') }}">{{ __('install.finish.statistics_link') }}</a>
{{ explode('|', __('install.finish.statistics', ['about' => '|']), 2)[1] }}
</div>
</div>
</div>