summaryrefslogtreecommitdiff
path: root/httemplate/edit
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/edit')
-rw-r--r--httemplate/edit/part_virtual_field.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/part_virtual_field.cgi b/httemplate/edit/part_virtual_field.cgi
index fb10321e8..8bc84387f 100644
--- a/httemplate/edit/part_virtual_field.cgi
+++ b/httemplate/edit/part_virtual_field.cgi
@@ -47,7 +47,7 @@ Field #<B><%=$vfieldpart or "(NEW)"%></B><BR><BR>
<TD><% if ($action eq 'Add') { %>
<SELECT SIZE=1 NAME="dbtable"><%
my $dbdef = dbdef; # ick
- foreach my $dbtable (sort { $a cmp $b } $dbdef->tables) {
+ foreach my $dbtable ($dbdef->tables) {
if ($dbtable !~ /^h_/
and $dbdef->table($dbtable)->primary_key) { %>
<OPTION VALUE="<%=$dbtable%>"><%=$dbtable%></OPTION><%