fix - multiple matrix sharing features
This commit is contained in:
parent
4a81339b10
commit
5f04c5c49d
2 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue