diff options
author | Christian Schneider | 2021-01-05 14:05:26 +0100 |
---|---|---|
committer | Christian Schneider | 2021-01-05 14:05:26 +0100 |
commit | 13150f87c59dc052f698e7e905c07f56ccefaec7 (patch) | |
tree | f077f85e59a163fc57bef5bbc76626002ffc39d4 | |
parent | c24687f11c1fdabb2cfa30f6a01c019a2085344a (diff) | |
download | itools-13150f87c59dc052f698e7e905c07f56ccefaec7.tar.gz itools-13150f87c59dc052f698e7e905c07f56ccefaec7.tar.bz2 itools-13150f87c59dc052f698e7e905c07f56ccefaec7.zip |
Remove 11 year old FIXME comment, code has been in use like that long enough :-)
-rw-r--r-- | it_dbi.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_dbi.class b/it_dbi.class index 23a7be0..0fa890a 100644 --- a/it_dbi.class +++ b/it_dbi.class @@ -150,7 +150,7 @@ static function createclass($p) # Make sure singleton exists $dbi = $GLOBALS['it_dbi'] ? $GLOBALS['it_dbi'] : new it_dbi(array('table' => null) + $p); - $p += $dbi->_p; # FIXME: (has to be checked for side effects!) + $p += $dbi->_p; $dbid = $dbi->_dbid = "{$p['user']}@{$p['server']}:{$p['db']}"; if (!isset($dbi->_tables[$dbid])) |