diff --git a/pandora_console/extensions/resource_registration.php b/pandora_console/extensions/resource_registration.php index 4f23e340b3..732c0151ea 100755 --- a/pandora_console/extensions/resource_registration.php +++ b/pandora_console/extensions/resource_registration.php @@ -1120,7 +1120,7 @@ function resource_registration_extension_main() } echo '
'; - echo __('This extension makes registering resource templates easier.').' '.__('Here you can upload a resource template in .ptr format.').' '.__('Please refer to our documentation for more information on how to obtain and use %s resources.', get_product_name()).' '.'

'.__('You can get more resurces in our Public Resource Library'); + echo __('This extension makes registering resource templates easier.').' '.__('Here you can upload a resource template in .ptr format.').' '.__('Please refer to our documentation for more information on how to obtain and use %s resources.', get_product_name()).' '.'

'.__('You can get more resurces in our Public Resource Library'); echo '
'; echo '

'; diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index 520a95e2aa..dd1427af17 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -238,7 +238,7 @@ echo ''; if (!$config['disable_help']) { echo '
'; echo ''; - echo "".__('Get more modules on Monitoring Library').''; + echo "".__('Get more modules on Monitoring Library').''; echo ''; echo '
'; } diff --git a/pandora_console/godmode/module_library/module_library_view.php b/pandora_console/godmode/module_library/module_library_view.php index e5fe29a7bd..aeab26be20 100644 --- a/pandora_console/godmode/module_library/module_library_view.php +++ b/pandora_console/godmode/module_library/module_library_view.php @@ -159,8 +159,8 @@ var more_details = ''; var total_modules_text = ''; var view_web = ''; var empty_result = ''; -var error_get_token = ''; -var invalid_user = ''; +var error_get_token = ''; +var invalid_user = ''; var error_main = ''; var error_category = ''; var error_categories = ''; diff --git a/pandora_console/godmode/servers/plugin_registration.php b/pandora_console/godmode/servers/plugin_registration.php index e4ec7e7916..0b0be514a7 100644 --- a/pandora_console/godmode/servers/plugin_registration.php +++ b/pandora_console/godmode/servers/plugin_registration.php @@ -101,7 +101,7 @@ $output .= '

'; $output .= __($str); $output .= '

'; $output .= __('You can get more plugins in our'); -$output .= ''; +$output .= ''; $output .= ' '.__('Public Resource Library'); $output .= ''; $output .= '

'; diff --git a/pandora_console/include/javascript/module_library.js b/pandora_console/include/javascript/module_library.js index 689fab0533..6a36575568 100644 --- a/pandora_console/include/javascript/module_library.js +++ b/pandora_console/include/javascript/module_library.js @@ -14,6 +14,7 @@ Variables from PHP: - error_search */ +const REMOTE_MODULE_LIBRARY_URI = "https://pandorafms.com/library/"; $(document).ready(function() { // Save categories in sessionStorage to avoid making the request to the API many times. function set_local_categories() { @@ -100,8 +101,7 @@ $(document).ready(function() { // Get all categories from Module library. function get_all_categories() { $.ajax({ - url: - "https://pandorafms.com/library/wp-json/wp/v2/categories?per_page=100", + url: REMOTE_MODULE_LIBRARY_URI + "wp-json/wp/v2/categories?per_page=100", type: "GET", cache: false, crossDomain: true, @@ -127,10 +127,9 @@ $(document).ready(function() { var api_url = ""; if (selector == "search") { - api_url = "https://pandorafms.com/library/wp-json/wp/v2/posts?search="; + api_url = REMOTE_MODULE_LIBRARY_URI + "wp-json/wp/v2/posts?search="; } else if (selector == "category") { - api_url = - "https://pandorafms.com/library/wp-json/wp/v2/posts/?categories="; + api_url = REMOTE_MODULE_LIBRARY_URI + "wp-json/wp/v2/posts/?categories="; } $.ajax({ @@ -238,7 +237,7 @@ $(document).ready(function() { /* Print main page */ function library_main() { $.ajax({ - url: "https://pandorafms.com/library/wp-json/wp/v2/pages/121", + url: REMOTE_MODULE_LIBRARY_URI + "wp-json/wp/v2/pages/121", type: "GET", cache: false, crossDomain: true, @@ -286,6 +285,8 @@ function library_main() { clean_page.splice(0, 1); $.each(clean_page, function(i, v) { + // Clean et_pb_blurb WP tags. + v = v.replace(/([\[et_pb_blurb].*[\]](?=[A-z]))/g, ""); var main_category = $( "#library_main_content div.library_main_category:nth-child(" + i + ")" ); @@ -314,7 +315,7 @@ function library_main() { // Get all data from one category. This is necessary to get the category name. function get_category(id) { $.ajax({ - url: "https://pandorafms.com/library/wp-json/wp/v2/categories/" + id, + url: REMOTE_MODULE_LIBRARY_URI + "wp-json/wp/v2/categories/" + id, type: "GET", cache: false, contentType: "application/json",