bug fixes and caching improvements
This commit is contained in:
parent
48a8934b3b
commit
91d950e5f7
6 changed files with 95 additions and 47 deletions
|
|
@ -1,3 +1,10 @@
|
|||
6.3.1
|
||||
- Added some indicies to increase performance.
|
||||
- Added all sorts of caching to increase performance.
|
||||
- Fixed resetting votes on Poll would crash it.
|
||||
- Fixed not being able to set display title and other yes no questions to no.
|
||||
|
||||
|
||||
6.3.0
|
||||
- Migrated all wobjects to assets.
|
||||
- Migrated pages to the layout and redirect assets.
|
||||
|
|
|
|||
|
|
@ -1729,6 +1729,7 @@ WebGUI::Session::close();
|
|||
|
||||
sub replaceMacros {
|
||||
my $content = shift;
|
||||
return $content if ($content =~ /\^\^/); # double carets bad
|
||||
my $parenthesis;
|
||||
$parenthesis = qr /\( # Start with '(',
|
||||
(?: # Followed by
|
||||
|
|
|
|||
4
docs/upgrades/upgrade_6.3.0-6.3.1.sql
Normal file
4
docs/upgrades/upgrade_6.3.0-6.3.1.sql
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
insert into webguiVersion values ('6.3.1','upgrade',unix_timestamp());
|
||||
alter table asset add index state_parentId_lineage (state,parentId,lineage);
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue