17 lines
315 B
PHP
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();
|
|
}
|
|
} |