Files
drmaterac.pl/modules/x13linkrewrite/override/classes/Dispatcher.php
2025-01-06 20:47:25 +01: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();
}
}