Skip to content
Snippets Groups Projects
Commit ad7e74f3 authored by Jared Hancock's avatar Jared Hancock
Browse files

oops: Fix incorrect upgrade patch hash

parent c3407e47
Branches
Tags
No related merge requests found
/**
* @version v1.9.6
* @signature 7337bc63d257cd49ddbebc1eecbd394e
* @signature 5cd0a25a54fd27ed95f00d62edda4c6d
* @title Add support for ticket tasks
*
* This patch adds ability to thread anything and introduces tasks
......@@ -122,5 +122,5 @@ UPDATE `%TABLE_PREFIX%department`
-- Set new schema signature
UPDATE `%TABLE_PREFIX%config`
SET `value` = '7337bc63d257cd49ddbebc1eecbd394e'
SET `value` = '5cd0a25a54fd27ed95f00d62edda4c6d'
WHERE `key` = 'schema_signature' AND `namespace` = 'core';
......@@ -6,7 +6,7 @@
class TaskLoader extends MigrationTask {
var $description = "Loading initial data for tasks";
static $pman = array(
static $pmap = array(
'ticket.create' => 'task.create',
'ticket.edit' => 'task.edit',
'ticket.reply' => 'task.reply',
......
......@@ -193,7 +193,7 @@ UPDATE `%TABLE_PREFIX%form_field` SET `flags` = `flags` |
CASE WHEN `private` = 0 and @client_edit = 1 THEN CONV(3300, 16, 10)
WHEN `private` = 0 and @client_edit = 0 THEN CONV(3100, 16, 10)
WHEN `private` = 1 THEN CONV(3000, 16, 10)
WHEN `private` = 2 and @client_edit = 1 THEN CONV(300, 16, 10) END
WHEN `private` = 2 and @client_edit = 1 THEN CONV(300, 16, 10)
WHEN `private` = 2 and @client_edit = 0 THEN CONV(100, 16, 10) END
| CASE WHEN `required` = 0 THEN 0
WHEN `required` = 1 THEN CONV(4400, 16, 10)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment