Skip to content
Snippets Groups Projects
Commit aabad941 authored by Peter Rotich's avatar Peter Rotich
Browse files

Merge branch 'issue/270' into feature/variables-revisited

parents b2137725 61e7a44f
No related branches found
No related tags found
No related merge requests found
/**
* @version v1.7 RC2+
* @signature 15b3076533123ff617801d89861136c8
*
* Transitional patch.
*
*/
-- Finished with patch
UPDATE `%TABLE_PREFIX%config`
SET `schema_signature`='15b3076533123ff617801d89861136c8';
...@@ -62,8 +62,8 @@ ...@@ -62,8 +62,8 @@
/*############## Do NOT monkey with anything else beyond this point UNLESS you really know what you are doing ##############*/ /*############## Do NOT monkey with anything else beyond this point UNLESS you really know what you are doing ##############*/
#Current version && schema signature (Changes from version to version) #Current version && schema signature (Changes from version to version)
define('THIS_VERSION','1.7-RC2'); //Shown on admin panel define('THIS_VERSION','1.7-RC2+'); //Shown on admin panel
define('SCHEMA_SIGNATURE','1da1bcbafcedc65efef58f142a48ac91'); //MD5 signature of the db schema. (used to trigger upgrades) define('SCHEMA_SIGNATURE','15b3076533123ff617801d89861136c8'); //MD5 signature of the db schema. (used to trigger upgrades)
#load config info #load config info
$configfile=''; $configfile='';
if(file_exists(ROOT_DIR.'ostconfig.php')) //Old installs prior to v 1.6 RC5 if(file_exists(ROOT_DIR.'ostconfig.php')) //Old installs prior to v 1.6 RC5
......
...@@ -261,7 +261,7 @@ INSERT INTO `%TABLE_PREFIX%filter` ( ...@@ -261,7 +261,7 @@ INSERT INTO `%TABLE_PREFIX%filter` (
VALUES (1, 1, 99, 1, 'SYSTEM BAN LIST', 'Internal list for email banning. Do not remove', NOW()); VALUES (1, 1, 99, 1, 'SYSTEM BAN LIST', 'Internal list for email banning. Do not remove', NOW());
DROP TABLE IF EXISTS `%TABLE_PREFIX%filter_rule`; DROP TABLE IF EXISTS `%TABLE_PREFIX%filter_rule`;
CREATE TABLE `%TABLE_PREFIX%email_filter_rule` ( CREATE TABLE `%TABLE_PREFIX%filter_rule` (
`id` int(11) unsigned NOT NULL auto_increment, `id` int(11) unsigned NOT NULL auto_increment,
`filter_id` int(10) unsigned NOT NULL default '0', `filter_id` int(10) unsigned NOT NULL default '0',
`what` enum('name','email','subject','body','header') NOT NULL, `what` enum('name','email','subject','body','header') NOT NULL,
......
1da1bcbafcedc65efef58f142a48ac91 15b3076533123ff617801d89861136c8
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
**********************************************************************/ **********************************************************************/
#This version - changed on every release #This version - changed on every release
define('THIS_VERSION', '1.7-RC2'); define('THIS_VERSION', '1.7-RC2+');
#inits - error reporting. #inits - error reporting.
$error_reporting = E_ALL & ~E_NOTICE; $error_reporting = E_ALL & ~E_NOTICE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment