[ 1256718 ] Assets disappear after changing page layout

This commit is contained in:
Matthew Wilson 2005-08-25 07:58:32 +00:00
parent 320235bfec
commit 0ed0f15459
2 changed files with 19 additions and 8 deletions

View file

@ -3,8 +3,6 @@
- fix [ 1267548 ] can't add metadata field (midellaq)
- fix [ 1265788 ] SyndicatedContent *not working* in 6.7.x
- fix [ 1266285 ] 6.7.1 - UserProfile Fields Time error (Len Kranendonk)
=======
- fix [ 1245765 ] Missing 'page not found' crashes settings
- fix [ 1263934 ] 6.6.5 Import Scripts Asset URLs
- fix [ 1260760 ] Default endDate in asset table too high for FreeBSD
@ -19,7 +17,8 @@
- fix [ 1248040 ] plainblack forum search not showing dates
- fix [ 1265771 ] assets that were formerly packages are still on packageList
- fix [ 1177447 ] deployPackage does not retain content pos. (mwilson)
>>>>>>> 1.450
- fix [ 1256718 ] Assets disappear after changing page layout (mwilson)
6.7.1
- fix [ 1251608 ] can't login

View file

@ -143,17 +143,29 @@ sub view {
my @positions = split(/\./,$self->get("contentPositions"));
my @hidden = split("\n",$self->getValue("assetsToHide"));
my $i = 1;
my $template= WebGUI::Asset->newByDynamicClass($self->get("templateId"))->get("template");
my $numPositions = 1;
foreach my $j (2..15) {
$numPositions = $j if $template =~ m/position${j}\_loop/;
}
my @found;
foreach my $position (@positions) {
my @assets = split(",",$position);
foreach my $asset (@assets) {
foreach my $child (@{$children}) {
if ($asset eq $child->getId) {
unless (isIn($asset,@hidden)) {
push(@{$vars{"position".$i."_loop"}},{
id=>$child->getId,
content=>$child->view
}) if $child->canView;
unless (isIn($asset,@hidden) || !($child->canView)) {
if ($i > $numPositions) {
push(@{$vars{"position1_loop"}},{
id=>$child->getId,
content=>$child->view
});
} else {
push(@{$vars{"position".$i."_loop"}},{
id=>$child->getId,
content=>$child->view
});
}
}
push(@found, $child->getId);
}