LetoDMS Community Forum
(Resolved) [LetoDMS-3.0.0-RC2] - Check version - Printable Version

+- LetoDMS Community Forum (https://community.letodms.com)
+-- Forum: LetoDMS Support (https://community.letodms.com/forumdisplay.php?fid=4)
+--- Forum: Bugs/Errors (https://community.letodms.com/forumdisplay.php?fid=11)
+--- Thread: (Resolved) [LetoDMS-3.0.0-RC2] - Check version (/showthread.php?tid=249)



(Resolved) [LetoDMS-3.0.0-RC2] - Check version - Doudoux - 02-24-2011

Hello

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)) 
to
PHP Code:
$tbllist explode(',',strtolower(join(',',$tbllist)));
if(!
array_search('tblversion'$tbllist)) 

Doudoux




RE: (Resolved) [LetoDMS-3.0.0-RC2] - Check version - Doudoux - 04-09-2011

Resolved in LetoDMS-3.0.0-RC4