ZenphotoCMS Forum
Problem with - in mysql_prefix - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: Problem with - in mysql_prefix (/thread-1116.html)



Problem with - in mysql_prefix - idumaire - 2007-02-02

I you have $conf['mysql_prefix'] = "zp_107-";

then a MySql error occur with '.... near -album ...'

Solution : in function-db.php

function prefix($tablename) {
return "".zp_conf('mysql_prefix').$tablename."";
}

Rem : use backticks before and after zp_conf()




Problem with - in mysql_prefix - trisweb - 2007-02-02

I see what you mean. Okay, looks good, patch is in SVN.