Changeset 601 for trunk/wp-admin/upgrade-071-to-072.php
- Timestamp:
- 12/11/2003 12:22:36 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/upgrade-071-to-072.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/upgrade-071-to-072.php
r494 r601 3 3 if (!file_exists('../wp-config.php')) die("There doesn't seem to be a wp-config.php file. Double check that you updated wp-config.sample.php with the proper database connection information and renamed it to wp-config.php."); 4 4 require('../wp-config.php'); 5 require(' wp-install-helper.php');5 require('install-helper.php'); 6 6 7 7 $thisfile = 'upgrade-071-to-072.php'; … … 409 409 "INSERT INTO $tableoptions (option_id, option_name, option_type, option_value, option_description, option_admin_level, option_width) VALUES(15,'use_balanceTags', 2, '1', 'this could help balance your HTML code. if it gives bad results, set it to false', 8, 20)", 410 410 "INSERT INTO $tableoptions (option_id, option_name, option_type, option_value, option_description, option_admin_level, option_width) VALUES(16,'use_smilies', 2, '1', 'set this to true to enable smiley conversion in posts (note: this makes smiley conversion in ALL posts)', 8, 20)", 411 "INSERT INTO $tableoptions (option_id, option_name, option_type, option_value, option_description, option_admin_level, option_width) VALUES(17,'smilies_directory', 3, 'http://example.com/ b2-img/smilies', 'the directory where your smilies are (no trailing slash)', 8, 40)",411 "INSERT INTO $tableoptions (option_id, option_name, option_type, option_value, option_description, option_admin_level, option_width) VALUES(17,'smilies_directory', 3, 'http://example.com/wp-images/smilies', 'the directory where your smilies are (no trailing slash)', 8, 40)", 412 412 "INSERT INTO $tableoptions (option_id, option_name, option_type, option_value, option_description, option_admin_level, option_width) VALUES(18,'require_name_email', 2, '0', 'set this to true to require e-mail and name, or false to allow comments without e-mail/name', 8, 20)", 413 413 "INSERT INTO $tableoptions (option_id, option_name, option_type, option_value, option_description, option_admin_level, option_width) VALUES(19,'comment_allowed_tags', 3, '<b><i><strong><em><code><blockquote><p><br><strike><a>', 'here is a list of the tags that are allowed in the comments. You can add tags to the list, just add them in the string, add only the opening tag: for example, only \'<a>\' instead of \'<a href=\"\"></a>\'', 8, 40)", … … 710 710 ?> 711 711 <p>Hmm... I couldn't find links.config.php so I couldn't transfer all your settings. 712 You need to check them on the <a href=" wp-options.php?option_group_id=8">admin options page</a>.</p>712 You need to check them on the <a href="options.php?option_group_id=8">admin options page</a>.</p> 713 713 <?php 714 714 } // end else no links.config … … 820 820 ?> 821 821 <p>Hmm... I couldn't find b2config.php so I couldn't transfer all your settings. 822 You need to check them on the <a href=" wp-options.php?option_group_id=6">admin options page</a>.</p>822 You need to check them on the <a href="options.php?option_group_id=6">admin options page</a>.</p> 823 823 <p>You can now go play with your <a href="<?php echo $siteurl ? $siteurl : '../index.php'; ?>">updated blog</a> </p> 824 824 <?php
Note: See TracChangeset
for help on using the changeset viewer.