Textpattern | PHP Cross Reference | Content Management Systems |
1 <?php 2 3 /* 4 * Textpattern Content Management System 5 * https://textpattern.com/ 6 * 7 * Copyright (C) 2020 The Textpattern Development Team 8 * 9 * This file is part of Textpattern. 10 * 11 * Textpattern is free software; you can redistribute it and/or 12 * modify it under the terms of the GNU General Public License 13 * as published by the Free Software Foundation, version 2. 14 * 15 * Textpattern is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU General Public License for more details. 19 * 20 * You should have received a copy of the GNU General Public License 21 * along with Textpattern. If not, see <https://www.gnu.org/licenses/>. 22 */ 23 24 if (!defined('TXP_UPDATE')) { 25 exit("Nothing here. You can't access this file directly."); 26 } 27 28 safe_alter('txp_users', "MODIFY RealName VARCHAR(255) NOT NULL DEFAULT ''"); 29 safe_alter('txp_users', "MODIFY email VARCHAR(254) NOT NULL DEFAULT ''"); 30 31 // Remove any setup strings from lang table. 32 safe_delete('txp_lang', "event = 'setup'"); 33 34 safe_create_index('textpattern', 'url_title', 'url_title_idx'); 35 36 // Remove is_default from txp_section table and make it a preference. 37 $cols = getThings("DESCRIBE `".PFX."txp_section`"); 38 if (!safe_field("name", 'txp_prefs', "name = 'default_section'")) { 39 if (in_array('is_default', $cols)) { 40 $current_default_section = safe_field("name", 'txp_section', "is_default = 1"); 41 safe_insert('txp_prefs', "prefs_id = 1, name = 'default_section', val = '".doSlash($current_default_section)."', type = '2', event = 'section', html = 'text_input', position = '0'"); 42 } 43 } 44 45 if (in_array('is_default', $cols)) { 46 safe_alter('txp_section', "DROP is_default"); 47 } 48 49 safe_alter('txp_css', "MODIFY css MEDIUMTEXT NOT NULL");
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
title