Hello
With my phpmyadmin, when i launch this
phpmyadmin create tblversion table with lowercase
in file "inc.ClassDMS.php" change line 221
to
Doudoux
With my phpmyadmin, when i launch this
Code:
CREATE TABLE `tblVersion` (
`date` datetime,
`major` smallint,
`minor` smallint,
`subminor` smallint
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO tblVersion VALUES (NOW(), 3, 0, 0);
phpmyadmin create tblversion table with lowercase
in file "inc.ClassDMS.php" change line 221
PHP Code:
if(!array_search('tblVersion', $tbllist))
PHP Code:
$tbllist = explode(',',strtolower(join(',',$tbllist)));
if(!array_search('tblversion', $tbllist))
Doudoux