diff options
author | Christian Schneider | 2019-02-13 12:44:41 +0100 |
---|---|---|
committer | Christian Schneider | 2019-02-13 12:44:41 +0100 |
commit | a4bedb46f0530ad96eda5b8f6d82cc2bea2d2b8d (patch) | |
tree | 2c5cf160cebef54d549fd03452da28128b97a7d4 | |
parent | 2a1db64b3ab5e0050807f7f9dbcfe29b72809aaa (diff) | |
download | itools-a4bedb46f0530ad96eda5b8f6d82cc2bea2d2b8d.tar.gz itools-a4bedb46f0530ad96eda5b8f6d82cc2bea2d2b8d.tar.bz2 itools-a4bedb46f0530ad96eda5b8f6d82cc2bea2d2b8d.zip |
Remove migration functions as all old-style usages have been updated
-rw-r--r-- | it_dbi.class | 6 | ||||
-rw-r--r-- | it_user.class | 6 |
2 files changed, 0 insertions, 12 deletions
diff --git a/it_dbi.class b/it_dbi.class index 6f976d5..6a0f62f 100644 --- a/it_dbi.class +++ b/it_dbi.class @@ -100,12 +100,6 @@ function __construct($p = array(), $query = null) $GLOBALS['it_dbi'] =& $this; } -# Migration helper function -function it_dbi($p = array(), $query = null) -{ - return self::__construct($p, $query); -} - /** * function Tablename($query) * Constructor. Returns record object from table Tablename. diff --git a/it_user.class b/it_user.class index 2f891ef..68ff2b7 100644 --- a/it_user.class +++ b/it_user.class @@ -77,12 +77,6 @@ function __construct($p = array()) $this->status = _IT_USER_STATUS_INVALID; } -# Migration helper function -function it_user($p = array()) -{ - return self::__construct($p); -} - /** * Post processing, called by ITools after reading a database record * @access private |