- Fixed a bug that didn't allow you to search a matrix.

- Fixed a bug in the upgrade that caused template problems with the WebGUI 6
   template if anyone was still using that.
- fixed a documentation bug
This commit is contained in:
JT Smith 2006-07-18 17:08:25 +00:00
parent e718fc5b9a
commit 1bfcf846ce
4 changed files with 7 additions and 14 deletions

View file

@ -16,6 +16,9 @@
- fix: Unable to duplicate existing Session Id
- fix: Admins not in visitors group
- fix: Data Form Text Area ignores size settings
- Fixed a bug that didn't allow you to search a matrix.
- Fixed a bug in the upgrade that caused template problems with the WebGUI 6
template if anyone was still using that.
7.0.1

View file

@ -24,7 +24,6 @@ my $session = start(); # this line required
fixSurvey($session);
fixEditWorkflow($session);
fixOrphans();
updateHttpProxy();
fixShippingOptions();
@ -42,15 +41,6 @@ sub updateHttpProxy {
$session->db->write("alter table HttpProxy add column useAmpersand int not null default 0");
}
#-------------------------------------------------
sub fixOrphans {
print "\tFixing orphans created by 7fixup.\n" unless ($quiet);
my $db = $session->db;
$db->write("delete from template where assetId='9tBSOV44a9JPS8CcerOvYw'");
$db->write("delete from template where assetId='B1bNjWVtzSjsvGZh9lPz_A'");
}
#-------------------------------------------------
sub fixSurvey{
my $session = shift;