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

Tanya Lattner tonic at nondot.org
Mon Oct 12 15:02:52 PDT 2009



Changes in directory llvm-www/devmtg:

talkInfo.php updated: 1.1 -> 1.2
---
Log message:

Its an int.


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

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


Index: llvm-www/devmtg/talkInfo.php
diff -u llvm-www/devmtg/talkInfo.php:1.1 llvm-www/devmtg/talkInfo.php:1.2
--- llvm-www/devmtg/talkInfo.php:1.1	Thu Oct  1 21:16:05 2009
+++ llvm-www/devmtg/talkInfo.php	Mon Oct 12 17:02:37 2009
@@ -8,7 +8,7 @@
 virtual("../header.incl");
 ?>
 <?
-$id = $_GET['id'];
+$id = (int)$_GET['id'];
 $sql = "SELECT lastName, firstName, organization, title, summary from presenters WHERE id=$id";
 
 $results = mysql_query($sql);






More information about the llvm-commits mailing list