You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-08-09 05:02:44 +03: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:
@@ -49,7 +49,7 @@ require_once("$incpath/languages/en.lang");
|
|||||||
* __autoload implementation, for use with spl_autoload_register().
|
* __autoload implementation, for use with spl_autoload_register().
|
||||||
*/
|
*/
|
||||||
function postfixadmin_autoload2($class) {
|
function postfixadmin_autoload2($class) {
|
||||||
$PATH = CORE_INCLUDE_PATH.'/models-ext/' . $class . '.php';
|
$PATH = CORE_INCLUDE_PATH.'/../model/' . $class . '.php';
|
||||||
|
|
||||||
if(is_file($PATH)) {
|
if(is_file($PATH)) {
|
||||||
require_once($PATH);
|
require_once($PATH);
|
||||||
|
@@ -1,2 +0,0 @@
|
|||||||
<?php
|
|
||||||
require('../model/AliasHandler.php');
|
|
@@ -1,2 +0,0 @@
|
|||||||
<?php
|
|
||||||
require('../model/UserHandler.php');
|
|
Reference in New Issue
Block a user