Changeset 297 for branches/release-1_3/include/config.inc.php
- Timestamp:
- Jan 18, 2004, 11:06:34 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/release-1_3/include/config.inc.php
r294 r297 68 68 'comments_forall','authorize_cookies','mail_notification' ); 69 69 70 $query = 'SELECT '; 71 foreach ( $infos as $i => $info ) { 72 if ( $i > 0 ) $query.= ','; 73 $query.= $info; 74 } 70 $query = 'SELECT '.implode( ',', $infos ); 75 71 $query.= ' FROM '.PREFIX_TABLE.'config;'; 76 72
Note: See TracChangeset
for help on using the changeset viewer.