Files
lulandia.pl/modules/x13linkrewrite-old/override/classes/Dispatcher.php
2025-04-01 00:38:54 +02:00

17 lines
315 B
PHP

<?php
class Dispatcher extends DispatcherCore
{
protected function setRequestUri()
{
/* Start OVERRIDE */
if ($this->front_controller == self::FC_FRONT)
{
$module = Module::getInstanceByName('x13linkrewrite');
$module->parseRequest();
}
/* End OVERRIDE */
parent::setRequestUri();
}
}