added YUI and YUI-ext

fixed the resizable text area with IE problem
fixed the ad space with IE problem
merged the 7.2.0 and 7.1.4 change logs
This commit is contained in:
JT Smith 2006-11-07 23:15:57 +00:00
parent 6bf329d68d
commit 4f68a0933c
1026 changed files with 331404 additions and 60 deletions

View file

@ -178,6 +178,25 @@ sub getAds {
#-------------------------------------------------------------------
=head2 getAdSpaces ( session )
Returns an array reference containing all the ad spaces. This is a class method.
=cut
sub getAdSpaces {
my $class = shift;
my $session = shift;
my @ads = ();
my $rs = $session->db->read("select adSpaceId from adSpace order by title");
while (my ($id) = $rs->array) {
push(@ads, WebGUI::AdSpace->new($session, $id));
}
return \@ads;
}
#-------------------------------------------------------------------
=head2 getId ( )
Returns the id of this object.