# HG changeset patch # User Dan # Date 1191792527 14400 # Node ID 4c19952406db0dec093ce789686d41751fc5cd2c # Parent 1bc7e849a264616c37d7ee135d4a29f8b20d96d5# Parent 492510dddc34ce59916c5ea9ef9ebe0a69a077b7 Merging in latest changes from stable diff -r 1bc7e849a264 -r 4c19952406db .hgtags --- a/.hgtags Sun Oct 07 17:22:25 2007 -0400 +++ b/.hgtags Sun Oct 07 17:28:47 2007 -0400 @@ -5,3 +5,4 @@ 6f0bbf88c3251ca597cb76ac8b59a1ee61d6dd3d rebrand 0b5244001799fa29e83bf06c5f14eb69350f171c rebrand 42c6c83b8a004163c9cc2d85f3c8eada3b73adf6 rebrand +d53cc29308f4f4b97fc6d054e9e0855f37137409 rebrand diff -r 1bc7e849a264 -r 4c19952406db ajax.php --- a/ajax.php Sun Oct 07 17:22:25 2007 -0400 +++ b/ajax.php Sun Oct 07 17:28:47 2007 -0400 @@ -2,7 +2,7 @@ /* * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between - * Version 1.0.2 (Coblynau) + * Version 1.1.1 * Copyright (C) 2006-2007 Dan Fuhry * * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License diff -r 1bc7e849a264 -r 4c19952406db includes/captcha.php --- a/includes/captcha.php Sun Oct 07 17:22:25 2007 -0400 +++ b/includes/captcha.php Sun Oct 07 17:28:47 2007 -0400 @@ -1,7 +1,8 @@ load_theme('oxygen', 'bleu', false); +$template->load_theme('stpatty', 'shamrock', false); $modestrings = Array( 'welcome' => 'Welcome', @@ -313,10 +313,9 @@ case 'welcome': ?>
- [ Enano CMS Project logo ] + [ Enano CMS Project logo ]

Welcome to Enano

-

version 1.0.2 – stable
- also affectionately known as "coblynau" :)

+

version 1.1.1 – unstable

Array('1.0'), '1.0' => Array('1.0.1'), '1.0.1' => Array('1.0.1.1'), - '1.0.1.1' => Array('1.0.2b1') + '1.0.1.1' => Array('1.0.2b1'), + '1.0.2b1' => Array('Stable1.0ToUnstable1.1'), + 'Stable1.0ToUnstable1.1' => Array('1.1.1') ); -$this_version = '1.0.2'; +$this_version = '1.1.1'; $func_list = Array( '1.0' => Array('u_1_0_1_update_del_votes'), '1.0b4' => Array('u_1_0_RC1_update_user_ids', 'u_1_0_RC1_add_admins_to_group', 'u_1_0_RC1_alter_files_table', 'u_1_0_RC1_destroy_session_cookie', 'u_1_0_RC1_set_contact_email', 'u_1_0_RC1_update_page_text'), // , diff -r 1bc7e849a264 -r 4c19952406db upgrade.sql --- a/upgrade.sql Sun Oct 07 17:22:25 2007 -0400 +++ b/upgrade.sql Sun Oct 07 17:28:47 2007 -0400 @@ -3,7 +3,14 @@ -- ALL NON-SQL LINES, even otherwise blank lines, must start with "--" or they will get sent to MySQL! -- Common tasks (version numbers) DELETE FROM {{TABLE_PREFIX}}config WHERE config_name='enano_version' OR config_name='enano_beta_version' OR config_name='enano_alpha_version' OR config_name='enano_rc_version'; -INSERT INTO {{TABLE_PREFIX}}config (config_name, config_value) VALUES( 'enano_version', '1.0.2' ); +INSERT INTO {{TABLE_PREFIX}}config (config_name, config_value) VALUES( 'enano_version', '1.1.1' ); +---BEGIN Stable1.0ToUnstable1.1--- +UPDATE {{TABLE_PREFIX}}groups SET group_id=9998 WHERE group_id=4; +UPDATE {{TABLE_PREFIX}}group_members SET group_id=9998 WHERE group_id=4; +INSERT INTO {{TABLE_PREFIX}}groups(group_id,group_name,group_type,system_group) VALUES(4, 'Regular members', 3, 1); +---END Stable1.0ToUnstable1.1--- +---BEGIN 1.0.2--- +---END 1.0.2--- ---BEGIN 1.0.2b1--- -- This is really optional, but could reduce confusion if regex page groups get truncated for no apparent reason. ALTER TABLE {{TABLE_PREFIX}}page_groups MODIFY COLUMN pg_target text DEFAULT NULL;