[llvm-commits] CVS: llvm-www/devmtg/index.php

Tanya Lattner tonic at nondot.org
Thu May 22 16:24:51 PDT 2008



Changes in directory llvm-www/devmtg:

index.php updated: 1.10 -> 1.11
---
Log message:

Fix ordering of attendees.


---
Diffs of the changes:  (+1 -1)

 index.php |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm-www/devmtg/index.php
diff -u llvm-www/devmtg/index.php:1.10 llvm-www/devmtg/index.php:1.11
--- llvm-www/devmtg/index.php:1.10	Thu May 22 16:50:23 2008
+++ llvm-www/devmtg/index.php	Thu May 22 18:24:30 2008
@@ -79,7 +79,7 @@
         <table class="www">
         <tr><th>Name</th><th>Organization</th></tr>
 <?
-$sql = "SELECT lastName, firstName, organization from attendees ORDER BY lastName And firstName";
+$sql = "SELECT lastName, firstName, organization from attendees ORDER BY lastName, firstName";
 $results = mysql_query($sql);
 $count = 0;
 while($row = mysql_fetch_array($results)) {






More information about the llvm-commits mailing list