15 lines
337 B
PHP
Executable File
15 lines
337 B
PHP
Executable File
<?php
|
|
class IdentityController extends IdentityControllerCore {
|
|
public function preProcess() {
|
|
self::$smarty->assign(array('HOOK_PROFILE_EDIT' => Module::hookExec('profileEdit')));
|
|
parent::preProcess();
|
|
}
|
|
|
|
public function setMedia() {
|
|
parent::setMedia();
|
|
|
|
global $css_files;
|
|
$css_files = array_slice($css_files, 0, 1);
|
|
}
|
|
}
|