Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix newsflow url to Dashboard's update page #3228

Merged
merged 2 commits into from Dec 22, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/concrete/blocks/dashboard_app_status/view.php
Expand Up @@ -4,7 +4,7 @@
<br/>

<? if (version_compare($latest_version, APP_VERSION, '>')) { ?>
<p><span class="label notice"><?=t('concrete5 Update')?></span> <?=t('The latest version of concrete5 is <strong>%s</strong>. You are currently running concrete5 version <strong>%s</strong>.', $latest_version, APP_VERSION)?> <a class="" href="<?=$view->url('/dashboard/system/backup_restore/update')?>"><?=t('Learn more and update.')?></a></p>
<p><span class="label notice"><?=t('concrete5 Update')?></span> <?=t('The latest version of concrete5 is <strong>%s</strong>. You are currently running concrete5 version <strong>%s</strong>.', $latest_version, APP_VERSION)?> <a class="" href="<?=$view->url('/dashboard/system/backup/update')?>"><?=t('Learn more and update.')?></a></p>

<? } else if (version_compare(APP_VERSION, Config::get('concrete.version'), '>')) { ?>
<p><span class="label warning"><?=t('concrete5')?></span>
Expand Down