- Timestamp:
- Mar 14, 2006, 12:27:34 AM (19 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/config_default.inc.php
r1062 r1078 127 127 $conf['newcat_default_status'] = 'public'; 128 128 129 // newuser_default_enabled_high : at creation, must a user with enabled_high or not 130 $conf['newuser_default_enabled_high'] = 'true'; 131 129 132 // level_separator : character string used for separating a category level 130 133 // to the sub level. Suggestions : ' / ', ' » ', ' → ', ' - ', -
trunk/install/phpwebgallery_structure.sql
r1071 r1078 305 305 `template` varchar(255) NOT NULL default 'yoga/clear', 306 306 `registration_date` datetime NOT NULL default '0000-00-00 00:00:00', 307 `enabled_high` enum('true','false') NOT NULL default 'true', 307 308 UNIQUE KEY `user_infos_ui1` (`user_id`) 308 309 ) TYPE=MyISAM; -
trunk/picture.php
r1072 r1078 3 3 // | PhpWebGallery - a PHP based picture gallery | 4 4 // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | 5 // | Copyright (C) 2003-200 5PhpWebGallery Team - http://phpwebgallery.net |5 // | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | branch : BSF (Best So Far) … … 337 337 if ($i == 'current') 338 338 { 339 if ( $row['has_high']=='true')339 if (($row['has_high'] == 'true') and ($user['enabled_high'] == 'true')) 340 340 { 341 341 $url_high=$cat_directory.'/pwg_high/'.$row['file'];
Note: See TracChangeset
for help on using the changeset viewer.