diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index 318209f5d..351eb0758 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -4,6 +4,8 @@ values of the current user. - fix [ 1381551 ] epochToHuman for foreign languages - fix [ 1381305 ] SQLReports report nothing!!! + - fix [ 1381873 ] Matrix missing toolbar + 6.8.2 - fix [ 1378871 ] become this user doesn't work diff --git a/docs/upgrades/upgrade_6.8.2-6.8.3.pl b/docs/upgrades/upgrade_6.8.2-6.8.3.pl index b457b7c8e..2d8e79e56 100644 --- a/docs/upgrades/upgrade_6.8.2-6.8.3.pl +++ b/docs/upgrades/upgrade_6.8.2-6.8.3.pl @@ -13,7 +13,7 @@ use strict; use Getopt::Long; use WebGUI::Session; use WebGUI::SQL; - +use WebGUI::Asset; my $toVersion = "6.8.3"; # make this match what version you're going to my $quiet; # this line required @@ -21,16 +21,154 @@ my $quiet; # this line required start(); # this line required -# upgrade functions go here +fixMatrixTemplate(); finish(); # this line required -##------------------------------------------------- -#sub exampleFunction { -# print "\tWe're doing some stuff here that you should know about.\n" unless ($quiet); -# # and here's our code -#} +#------------------------------------------------- +sub fixMatrixTemplate { + print "\tFix matrix template.\n" unless ($quiet); +my $template = < +

+ +

+ + +

+
+ + +
+

Use the form below to select up to listings to compare at once. +

+ + +
+ + +

+Narrow The Matrix
+You can narrow the scope of the matrix by searching for exactly the criteria you're looking for in a listing. +

+ + +

+
Expand The Matrix
+ + Click here to add a new listing. Please note that you will be the official maintainer of the listing, and will be responsible for keeping it up to date. + +If you are the maker of a product, or are an expert user and are willing to maintain the listing, create an account so you can register your listing. + + +

+ + + +
Listing Statistics
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Most clicks:
Most views:
Most compares:
Most recently updated:

Best Rated By Users
/10

View Ratings Details

Worst Rated By Users
/10

+ +
+
Site Statistics
+ + + + + + + + + + + + + +
Listing Count:
Current Visitors:
Registered Users:
+ + + + + +

List Fields +

+ +PENDING LISTINGS: + +
    + +
  • +
    +
+
+ +
+STOP + my $asset = WebGUI::Asset->new("matrixtmpl000000000001","WebGUI::Asset::Template"); + $asset->addRevision({template=>$template})->commit if (defined $template); +}