Changeset 13284 for trunk/install/sql/v70.sql
- Timestamp:
- 11/20/09 06:31:49 (3 years ago)
- File:
-
- 1 edited
-
trunk/install/sql/v70.sql (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/install/sql/v70.sql
r13278 r13284 1070 1070 INSERT INTO `sys_options` VALUES('newusernotify', 'on', 1, 'New User Notify', 'checkbox', '', '', 2, ''); 1071 1071 INSERT INTO `sys_options` VALUES('promotion_membership_days', '7', 5, 'Number of days for promotional membership', 'digit', '', '', 5, ''); 1072 INSERT INTO `sys_options` VALUES('search_ end_age', '75', 1, 'Highest age possible for site members', 'digit', '', '', 21, '');1073 INSERT INTO `sys_options` VALUES('search_ start_age', '18', 1, 'Lowest age possible for site members', 'digit', '', '', 20, '');1072 INSERT INTO `sys_options` VALUES('search_start_age', '18', 1, 'Lowest age possible for site members', 'digit', 'return setSearchStartAge((int)$arg0);', '', 20, ''); 1073 INSERT INTO `sys_options` VALUES('search_end_age', '75', 1, 'Highest age possible for site members', 'digit', 'return setSearchEndAge((int)$arg0);', '', 21, ''); 1074 1074 INSERT INTO `sys_options` VALUES('sys_calendar_starts_sunday', '', 15, 'Does Calender start on Sunday?', 'checkbox', '', '', '18', ''); 1075 1075 INSERT INTO `sys_options` VALUES('top_members_max_num', '16', 8, 'How many results show on index page in top members area', 'digit', '', '', NULL, ''); … … 2809 2809 ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 2810 2810 2811 INSERT INTO `sys_shared_sites` VALUES( '', 'digg', 'http://digg.com/submit?phase=2&url=', 'digg.png');2812 INSERT INTO `sys_shared_sites` VALUES( '', 'delicious', 'http://del.icio.us/post?url=', 'delicious.png');2813 INSERT INTO `sys_shared_sites` VALUES( '', 'blinklist', 'http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=', 'blinklist.png');2814 INSERT INTO `sys_shared_sites` VALUES( '', 'furl', 'http://www.furl.net/storeIt.jsp?u=', 'furl.png');2815 INSERT INTO `sys_shared_sites` VALUES( '', 'netscape', 'http://www.netscape.com/submit/?U=', 'netscape.gif');2816 INSERT INTO `sys_shared_sites` VALUES( '', 'newsvine', 'http://www.newsvine.com/_tools/seed&save?u=', 'newsvine.png');2817 INSERT INTO `sys_shared_sites` VALUES( '', 'reddit', 'http://reddit.com/submit?url=', 'reddit.png');2818 INSERT INTO `sys_shared_sites` VALUES( '', 'shadows', 'http://www.shadows.com/features/tcr.htm?url=', 'shadows.png');2819 INSERT INTO `sys_shared_sites` VALUES( '', 'slashdot', 'http://slashdot.org/bookmark.pl?url=', 'slashdot.png');2820 INSERT INTO `sys_shared_sites` VALUES( '', 'sphere', 'http://www.sphere.com/search?q=sphereit:', 'sphere.png');2821 INSERT INTO `sys_shared_sites` VALUES( '', 'stumbleupon', 'http://www.stumbleupon.com/url/http', 'stumbleupon.png');2822 INSERT INTO `sys_shared_sites` VALUES( '', 'technorati', 'http://technorati.com/faves?add=', 'technorati.png');2811 INSERT INTO `sys_shared_sites` VALUES(NULL, 'digg', 'http://digg.com/submit?phase=2&url=', 'digg.png'); 2812 INSERT INTO `sys_shared_sites` VALUES(NULL, 'delicious', 'http://del.icio.us/post?url=', 'delicious.png'); 2813 INSERT INTO `sys_shared_sites` VALUES(NULL, 'blinklist', 'http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=', 'blinklist.png'); 2814 INSERT INTO `sys_shared_sites` VALUES(NULL, 'furl', 'http://www.furl.net/storeIt.jsp?u=', 'furl.png'); 2815 INSERT INTO `sys_shared_sites` VALUES(NULL, 'netscape', 'http://www.netscape.com/submit/?U=', 'netscape.gif'); 2816 INSERT INTO `sys_shared_sites` VALUES(NULL, 'newsvine', 'http://www.newsvine.com/_tools/seed&save?u=', 'newsvine.png'); 2817 INSERT INTO `sys_shared_sites` VALUES(NULL, 'reddit', 'http://reddit.com/submit?url=', 'reddit.png'); 2818 INSERT INTO `sys_shared_sites` VALUES(NULL, 'shadows', 'http://www.shadows.com/features/tcr.htm?url=', 'shadows.png'); 2819 INSERT INTO `sys_shared_sites` VALUES(NULL, 'slashdot', 'http://slashdot.org/bookmark.pl?url=', 'slashdot.png'); 2820 INSERT INTO `sys_shared_sites` VALUES(NULL, 'sphere', 'http://www.sphere.com/search?q=sphereit:', 'sphere.png'); 2821 INSERT INTO `sys_shared_sites` VALUES(NULL, 'stumbleupon', 'http://www.stumbleupon.com/url/http', 'stumbleupon.png'); 2822 INSERT INTO `sys_shared_sites` VALUES(NULL, 'technorati', 'http://technorati.com/faves?add=', 'technorati.png'); 2823 2823 2824 2824 --
Note: See TracChangeset
for help on using the changeset viewer.