fix - multiple matrix sharing features

This commit is contained in:
Roy Johnson 2007-02-06 20:16:16 +00:00
parent 4a81339b10
commit 5f04c5c49d
2 changed files with 2 additions and 1 deletions

View file

@ -61,6 +61,7 @@
- fix: SQL Report download template (perlDreamer Consulting, LLC)
- fix: Ignoring shortcut overrides.
- fix: Calendar feeds not working.
- fix: multiple matrix sharing features
7.3.8
- Fixed a template variable rewriting problem with HTML::Template::Expr

View file

@ -317,7 +317,7 @@ sub www_compare {
.$tableCount.".fieldId and ".$tableCount.".listingId=".$self->session->db->quote($cms);
$tableCount++;
}
my $sth = $self->session->db->read("$select $from where a.category=".$self->session->db->quote($category)." order by a.label");
my $sth = $self->session->db->read("$select $from where a.category=".$self->session->db->quote($category)." and a.assetId=".$self->session->db->quote($self->getId)." order by a.label");
while (my @row = $sth->array) {
my @columnloop;
my $first = 1;