Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
administrator /
components /
com_tags /
Delete
Unzip
Name
Size
Permission
Date
Action
controllers
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
helpers
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
models
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
tables
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
views
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
access.xml
817
B
-rwxr-xr-x
2023-07-08 16:23
config.xml
10.41
KB
-rwxr-xr-x
2023-07-08 16:23
controller.php
1.37
KB
-rwxr-xr-x
2023-07-08 16:23
tags.php
589
B
-rwxr-xr-x
2023-07-08 16:23
tags.xml
1.38
KB
-rwxr-xr-x
2023-07-08 16:23
Save
Rename
<?php /** * @package Joomla.Administrator * @subpackage com_tags * * @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * Tags view class for the Tags package. * * @since 3.1 */ class TagsController extends JControllerLegacy { /** * Method to display a view. * * @param boolean $cachable If true, the view output will be cached * @param array $urlparams An array of safe URL parameters and their variable types, for valid values see {@link JFilterInput::clean()}. * * @return JControllerLegacy This object to support chaining. * * @since 3.1 */ public function display($cachable = false, $urlparams = false) { $view = $this->input->get('view', 'tags'); $layout = $this->input->get('layout', 'default'); $id = $this->input->getInt('id'); // Check for edit form. if ($view == 'tag' && $layout == 'edit' && !$this->checkEditId('com_tags.edit.tag', $id)) { // Somehow the person just went to the form - we don't allow that. $this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID', $id)); $this->setMessage($this->getError(), 'error'); $this->setRedirect(JRoute::_('index.php?option=com_tags&view=tags', false)); return false; } parent::display(); return $this; } }