Хранилища Subversion kbase

Сравнить редакции

Не учитывать пробелы Редакция 7 → Редакция 8

/trunk/init.php
14,6 → 14,7
require_once ROOT."/libs/DB.php";
require_once ROOT."/libs/core.php";
require_once ROOT."/libs/theme.php";
require_once ROOT."/libs/auth.php";
 
$dsn = array(
'phptype' => 'mysql',
36,5 → 37,6
 
$core = new Core;
$theme = new Theme;
$auth = new Auth;
 
?>
/trunk/libs/auth.php
Новый файл
0,0 → 1,16
<?php
 
/**
* KBase
* http://alex-w.org.ru/p/kbase/
*
* Copyright (c) 2009 Alexander Wolf
* Dual licensed under the MIT and GNU LGPL licenses.
* http://alex-w.org.ru/p/kbase/license
*
*/
 
class Auth {
}
 
?>