[Rt-commit] rt branch, 4.4/custom-field-html-option, repushed
Craig Kaiser
craig at bestpractical.com
Wed Mar 20 13:43:11 EDT 2019
The branch 4.4/custom-field-html-option was deleted and repushed:
was eb34176e56adf4ff806b4c3b130b7c1e8d8413b2
now c0a17ddad900308fe7989ef2df8136f4ebd06c59
1: eb34176e5 ! 1: c0a17ddad Allow HTML to be escaped for custom fields on display
@@ -4,6 +4,56 @@
If we are displaying the content of a customfield and the content is
HTML content, it is useful to see the whole content escaped.
+
+diff --git a/etc/schema.Oracle b/etc/schema.Oracle
+--- a/etc/schema.Oracle
++++ b/etc/schema.Oracle
+@@
+ Created DATE,
+ LastUpdatedBy NUMBER(11,0) DEFAULT 0 NOT NULL,
+ LastUpdated DATE,
+- Disabled NUMBER(11,0) DEFAULT 0 NOT NULL
++ Disabled NUMBER(11,0) DEFAULT 0 NOT NULL,
++ Escaped NUMBER(11,0) DEFAULT 0 NOT NULL
+ );
+
+
+
+diff --git a/etc/schema.Pg b/etc/schema.Pg
+--- a/etc/schema.Pg
++++ b/etc/schema.Pg
+@@
+ LastUpdatedBy integer NOT NULL DEFAULT 0 ,
+ LastUpdated TIMESTAMP NULL ,
+ Disabled integer NOT NULL DEFAULT 0 ,
++ Escaped integer NOT NULL DEFAULT 0 ,
+ PRIMARY KEY (id)
+
+ );
+
+diff --git a/etc/schema.SQLite b/etc/schema.SQLite
+--- a/etc/schema.SQLite
++++ b/etc/schema.SQLite
+@@
+ LastUpdatedBy integer NOT NULL DEFAULT 0 ,
+ LastUpdated DATETIME NULL ,
+ Disabled int2 NOT NULL DEFAULT 0 ,
++ Escaped int2 NOT NULL DEFAULT 0 ,
+ PRIMARY KEY (id)
+ ) ;
+
+
+diff --git a/etc/schema.mysql b/etc/schema.mysql
+--- a/etc/schema.mysql
++++ b/etc/schema.mysql
+@@
+ LastUpdatedBy integer NOT NULL DEFAULT 0 ,
+ LastUpdated DATETIME NULL ,
+ Disabled int2 NOT NULL DEFAULT 0 ,
++ Escaped int2 NOT NULL DEFAULT 0 ,
+ PRIMARY KEY (id)
+ ) ENGINE=InnoDB CHARACTER SET utf8;
+
diff --git a/etc/upgrade/4.4.5/schema.Oracle b/etc/upgrade/4.4.5/schema.Oracle
new file mode 100644
More information about the rt-commit
mailing list