Changeset 1634


Ignore:
Timestamp:
Dec 4, 2006, 10:57:23 PM (17 years ago)
Author:
rub
Message:

Fixed: Use old $conf to insert in #_config
Only to help for next migration

See http://svn.gna.org/viewcvs/phpwebgallery?rev=1565&view=rev

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/db/30-database.php

    r1565 r1634  
    3434
    3535$query = '
    36 INSERT INTO '.PREFIX_TABLE."config (param,value,comment) VALUES ('history_admin','false','keep a history of administrator visits on your website');";
     36INSERT INTO '.PREFIX_TABLE."config (param,value,comment) VALUES ('history_admin',".
     37((isset($conf['history_admin']) and $conf['history_admin']) ? 'true' : 'false').
     38",'keep a history of administrator visits on your website');";
    3739pwg_query($query);
    3840
Note: See TracChangeset for help on using the changeset viewer.