Skip to content

Commit 2aa8de8

Browse files
committedMay 30, 2012
Don't pull data from the version tag table that isn't used.

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/WebGUI/Operation/VersionTag.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ sub www_managePendingVersions {
582582
$ac->addSubmenuItem($session->url->page('op=manageCommittedVersions'), $i18n->get("manage committed versions")) if canView($session);
583583
my $output = '<table width="100%" class="content">
584584
<tr><th>'.$i18n->get("version tag name").'</th></tr> ';
585-
my $sth = $session->db->read("select tagId,name,commitDate,committedBy from assetVersionTag where isCommitted=0 and isLocked=1");
585+
my $sth = $session->db->read("select tagId,name from assetVersionTag where isCommitted=0 and isLocked=1");
586586
while (my ($id,$name) = $sth->array) {
587587
$output .= '<tr>
588588
<td><a href="'.$session->url->page("op=manageRevisionsInTag;tagId=".$id).'">'.$name.'</a></td>

0 commit comments

Comments
 (0)
Please sign in to comment.