fixed wiki master problem

This commit is contained in:
JT Smith 2007-06-10 17:41:13 +00:00
parent 21c4fcb75f
commit f25553394e
3 changed files with 10 additions and 2 deletions

View file

@ -36,6 +36,13 @@
7.3.19
- Fixed a formatting problem in the workflow editor screen.
- fix: bad javascript string escaping in EMS
- fix: Unable to upload images or edit listings for Matrix
- fix: recent changes limit in wiki master front page
- fix: old recurring events were not deleted when changing recurrence pattern
- fix: unable to remove recurrence on events
- fix: Show edit links on EMS search view without being in Admin group
- fix: Fixed a typo in the Article with attachments template (perlDreamer Consulting, LLC)
7.3.18

View file

@ -6,7 +6,7 @@ The following is a rough overview of how to install WebGUI. For
more detailed instructions read the WebGUI installation
documentation.
http://www.plainblack.com/webgui/install
http://wiki.webgui.org/installation-options
QnD INSTALL INSTRUCTIONS:

View file

@ -41,7 +41,8 @@ sub appendRecentChanges {
my $var = shift;
my $limit = shift || $self->get("recentChangesCount") || 50;
my $rs = $self->session->db->read("select asset.assetId, revisionDate from assetData left join asset on assetData.assetId=asset.assetId where
lineage like ? and lineage<>? and status='approved' order by revisionDate desc limit ?", [$self->get("lineage").'%', $self->get("lineage"), $self->get("recentChangesCount")]);
lineage like ? and lineage<>? and status='approved' order by revisionDate desc limit ?",
[$self->get("lineage").'%', $self->get("lineage"), $limit]);
while (my ($id, $version) = $rs->array) {
my $asset = WebGUI::Asset->new($self->session, $id, "WebGUI::Asset::WikiPage", $version);
my $user = WebGUI::User->new($self->session, $asset->get("actionTakenBy"));