1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-26 11:40:48 +03:00

Plugin-модули идут без приставки Ls

This commit is contained in:
Alexey Kachayev 2009-12-30 11:50:37 +00:00
parent 921886991b
commit 5ad87a8546
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ require_once('mapper/Profiler.mapper.class.php');
* Модуль статических страниц
*
*/
class PluginProfiler_LsProfiler extends Module {
class PluginProfiler_Profiler extends Module {
/**
* Меппер для сохранения логов в базу данных и формирования выборок по данным из базы
*

View file

@ -183,7 +183,7 @@ class Engine extends Object {
/**
* Определяем имя класса
*/
$sModuleNameClass='Plugin'.$aMatches[1].'_Ls'.$aMatches[2];
$sModuleNameClass='Plugin'.$aMatches[1].'_'.$aMatches[2];
}
/**