forum.coppermine-gallery.net

No Support => General discussion (no support!) => Topic started by: boii on October 05, 2003, 05:01:20 am

Title: devel 'bug' (table prefix).
Post by: boii on October 05, 2003, 05:01:20 am
hey guys.

i was sifting through the cvs and looking at the devel code.
i noticed that in the upgrade.php or so there's a call to update the sql tables (sql/update.php i believe).

anyhow in that file you'll notice:
"ALTER TABLE CPG_comments"
"INSERT INTO CPG_config"

and the like.

shouldn't `CPG` be replaced with the TABLE_PREFIX from the config. i know that my install of coppermine (defualt i believe) originally installed giving the tables a 'cpg11d' prefix.

i mean, it won't do anything if it can't alter/insert the right table.

just a thought (maybe i'm wrong).

cheers.
ken
Title: Re: devel 'bug' (table prefix).
Post by: Tarique Sani on October 05, 2003, 06:25:21 am
Quote from: "boii"
just a thought (maybe i'm wrong).

Yes you are wrong
Code: [Select]
// Update table prefix
        $sql_query = preg_replace('/CPG_/', $CONFIG['TABLE_PREFIX'], $sql_query);

Line 180 in update.php
Title: Re: devel 'bug' (table prefix).
Post by: boii on October 05, 2003, 07:09:24 am
Quote from: "tarique"

Yes you are wrong


well there's a first time for everything.

cheers.
ken