OwlCyberSecurity - MANAGER
Edit File: clean.php
<?php /** * @package Tabs * @version 6.0.3 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2016 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ defined('_JEXEC') or die; class PlgSystemTabsHelperClean { var $helpers = array(); var $params = null; public function __construct() { require_once __DIR__ . '/helpers.php'; $this->helpers = PlgSystemTabsHelpers::getInstance(); $this->params = $this->helpers->getParams(); } /** * Just in case you can't figure the method name out: this cleans the left-over junk */ public function cleanLeftoverJunk(&$string) { $this->helpers->get('protect')->unprotectTags($string); RLProtect::removeFromHtmlTagContent($string, $this->params->protected_tags); RLProtect::removeInlineComments($string, 'Tabs'); } }