Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
Fix documentation links
Browse files Browse the repository at this point in the history
  • Loading branch information
ddurieux committed May 10, 2022
1 parent 2e4572e commit 242ed49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions inc/menu.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -229,15 +229,15 @@ static function displayMenu($type = "big") {
if ($cronTask->fields['lastrun'] == ''
OR strtotime($cronTask->fields['lastrun']) < strtotime("-3 day")) {
$message = __('GLPI cron not running, see ', 'fusioninventory');
$message .= " <a href='http://fusioninventory.org/documentation/fi4g/cron.html' target='_blank'>".__('documentation', 'fusioninventory')."</a>";
$message .= " <a href='https://documentation.fusioninventory.org/%20FusionInventory_for_GLPI/%20%20Installation%20%26%20update/3.cron/' target='_blank'>".__('documentation', 'fusioninventory')."</a>";
Html::displayTitle($CFG_GLPI['root_doc']."/pics/warning.png", $message, $message);
}

// Check if plugin right updated (because security problems)
$fi_php_path = Plugin::getPhpDir('fusioninventory');
if (file_exists($fi_php_path."/ajax/deploydropdown_operatingsystems.php")) {
$message = __('SECURITY PROBLEM, see `2.1 Update` section to update correctly the plugin on ', 'fusioninventory');
$message .= " <a href='http://fusioninventory.org/documentation/fi4g/installation.html' target='_blank'>".__('documentation', 'fusioninventory')."</a>";
$message = __('SECURITY PROBLEM, see `Update` page to update correctly the plugin on ', 'fusioninventory');
$message .= " <a href='https://documentation.fusioninventory.org/%20FusionInventory_for_GLPI/%20%20Installation%20%26%20update/2.update/' target='_blank'>".__('documentation', 'fusioninventory')."</a>";
Html::displayTitle($CFG_GLPI['root_doc']."/pics/warning.png", $message, $message);
}

Expand Down

0 comments on commit 242ed49

Please sign in to comment.