[Koha-cvs] koha/C4 Members.pm [rel_3_0]

Bruno Toumi btoumi at ouestprovence.fr
Thu Nov 9 12:14:56 CET 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch:		rel_3_0
Changes by:	Bruno Toumi <btoumi>	06/11/09 11:14:56

Modified files:
	C4             : Members.pm 

Log message:
	change order by city name  for cities display 

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Members.pm?cvsroot=koha&only_with_tag=rel_3_0&r1=1.32.2.12&r2=1.32.2.13

Patches:
Index: Members.pm
===================================================================
RCS file: /sources/koha/koha/C4/Members.pm,v
retrieving revision 1.32.2.12
retrieving revision 1.32.2.13
diff -u -b -r1.32.2.12 -r1.32.2.13
--- Members.pm	9 Nov 2006 10:45:11 -0000	1.32.2.12
+++ Members.pm	9 Nov 2006 11:14:56 -0000	1.32.2.13
@@ -19,7 +19,7 @@
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-# $Id: Members.pm,v 1.32.2.12 2006/11/09 10:45:11 btoumi Exp $
+# $Id: Members.pm,v 1.32.2.13 2006/11/09 11:14:56 btoumi Exp $
 
 use strict;
 require Exporter;
@@ -31,7 +31,7 @@
 
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
 
-$VERSION = do { my @v = '$Revision: 1.32.2.12 $' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
+$VERSION = do { my @v = '$Revision: 1.32.2.13 $' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
 
 =head1 NAME
 
@@ -1450,7 +1450,7 @@
     my $dbh = C4::Context->dbh;
     my $query=qq|SELECT cityid,city_name 
 		FROM cities 
-		ORDER BY cityid|;
+		ORDER BY city_name|;
    my $sth=$dbh->prepare($query);
     #$sth->execute($type_city);
     $sth->execute();    





More information about the Koha-cvs mailing list