0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-20 03:36:20 +02:00

moved scripts/models-ext/* to model/

- moved scripts/models-ext/DomainHandler.php to model/
- deleted redirect scripts in scripts/models-ext/ (UserHandler.php, 
  AliasHandler.php)
- changed scripts/common.php to include the files from ../model/


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@925 a1433add-5e2c-0410-b055-b7f2511e0802
This commit is contained in:
Christian Boltz 2010-12-30 22:34:59 +00:00
parent 221c18bbc3
commit fe2d4ba129
4 changed files with 1 additions and 5 deletions

View File

@ -49,7 +49,7 @@ require_once("$incpath/languages/en.lang");
* __autoload implementation, for use with spl_autoload_register().
*/
function postfixadmin_autoload2($class) {
$PATH = CORE_INCLUDE_PATH.'/models-ext/' . $class . '.php';
$PATH = CORE_INCLUDE_PATH.'/../model/' . $class . '.php';
if(is_file($PATH)) {
require_once($PATH);

View File

@ -1,2 +0,0 @@
<?php
require('../model/AliasHandler.php');

View File

@ -1,2 +0,0 @@
<?php
require('../model/UserHandler.php');