Changeset 1634 for trunk/install/db/30-database.php
- Timestamp:
- Dec 4, 2006, 10:57:23 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/install/db/30-database.php
r1565 r1634 34 34 35 35 $query = ' 36 INSERT INTO '.PREFIX_TABLE."config (param,value,comment) VALUES ('history_admin','false','keep a history of administrator visits on your website');"; 36 INSERT 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');"; 37 39 pwg_query($query); 38 40
Note: See TracChangeset
for help on using the changeset viewer.