Skip to content

Commit

Permalink
Bugfix/mon 11672 direct kb links in monitor gui broken since confluen…
Browse files Browse the repository at this point in the history
…ce migration (#70)

Updated various links to point to our new kb instead of the old one.

Fixes: MON-11672

Signed-off-by: Erik Sjöström <esjostrom@op5.com>
  • Loading branch information
erikdsjostrom committed May 27, 2019
1 parent e61008b commit 157fc59
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion application/config/menu.php
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');

$config['items'] = false;
$config['manual_url'] = 'https://kb.op5.com/display/DOC';
$config['manual_url'] = 'https://docs.itrsgroup.com/';
2 changes: 1 addition & 1 deletion application/controllers/user.php
Expand Up @@ -87,7 +87,7 @@ public function index()
);

$sub_headings = array(
'listview' => array("https://kb.op5.com/x/AwE6", _('Read specification online'))
'listview' => array("https://support.itrsgroup.com/hc/en-us/articles/360020258033-Customizing-listview-columns", _('Read specification online'))
);

$settings['pagination'] = array(
Expand Down
2 changes: 1 addition & 1 deletion application/views/template_head.php
Expand Up @@ -49,7 +49,7 @@
"message": "OP5 Monitor uses cookies to ensure you get the best browsing experience. If you continue to use our website you agree to our use of cookies.",
"dismiss": "Got it",
"link": "Learn More",
"href": "https://kb.op5.com/x/txNrAQ"
"href": "https://support.itrsgroup.com/hc/en-us/articles/360020253933-Cookie-Policy"
},
onPopupOpen: function() {
$('#content').append('<div id="extra_div_for_cookie" style="height:200px"></div>');
Expand Down
2 changes: 1 addition & 1 deletion features/menu.feature
Expand Up @@ -68,7 +68,7 @@ Feature: Menu
@unreliable_el7 @unreliable
Scenario: Verify that the Manual link goes to the KB
When I hover the branding
Then I should see css "a[href='https://kb.op5.com/display/DOC']"
Then I should see css "a[href='https://docs.itrsgroup.com/']"

Scenario: Validate quicklink absolute URL
When I click "Manage quickbar"
Expand Down
2 changes: 1 addition & 1 deletion modules/lsfilter/libraries/LSFilterSetBuilderVisitor.php
Expand Up @@ -271,7 +271,7 @@ public function visit_arg_num_func($name0, $arg_list2)
case 'date':
$ret = strtotime($arg_list2[0]);
if (false === $ret) {
throw new ORMException("Don't know how to translate \"" . htmlspecialchars($arg_list2[0]) . "\" into a date, please <a href=\"https://kb.op5.com/x/jIWX\" target=\"blank\">click here</a> for information on supported date formats.");
throw new ORMException("Don't know how to translate \"" . htmlspecialchars($arg_list2[0]) . "\" into a date, please <a href=\"https://support.itrsgroup.com/hc/en-us/articles/360020061894-Listview-filter-date-function\" target=\"blank\">click here</a> for information on supported date formats.");
}
return $ret;
break;
Expand Down
2 changes: 1 addition & 1 deletion test/backup_Test.php
Expand Up @@ -2,7 +2,7 @@
/**
* Test the backup functions that are reached through the GUI. There are other
* types of backups being run too, you can read more about backups here:
* https://kb.op5.com/dosearchsite.action?queryString=backup
* https://support.itrsgroup.com/hc/search?query=backup
*/
class Backup_Test extends PHPUnit_Framework_TestCase {

Expand Down

0 comments on commit 157fc59

Please sign in to comment.