summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStarla Insigna <starla4444@gmail.com>2010-10-10 17:41:37 -0400
committerStarla Insigna <starla4444@gmail.com>2010-10-10 17:41:37 -0400
commit6d73fef3281365967d3d6ebef1be3998d5c61659 (patch)
tree9e6eb9d6f66a9100f08fac486e4bf1ff8bdf4426
parent38ae7b1997319c87c720b70e05ce25480a0f7575 (diff)
downloadfourisland-6d73fef3281365967d3d6ebef1be3998d5c61659.tar.gz
fourisland-6d73fef3281365967d3d6ebef1be3998d5c61659.tar.bz2
fourisland-6d73fef3281365967d3d6ebef1be3998d5c61659.zip
Fixed pingback ordering
-rwxr-xr-xpages/blog.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/blog.php b/pages/blog.php index ef147d5..e7163ce 100755 --- a/pages/blog.php +++ b/pages/blog.php
@@ -98,7 +98,7 @@ if (isset($_GET['post']))
98 98
99 $template->display(); 99 $template->display();
100 100
101 $getpings = "SELECT * FROM pingbacks WHERE post_id = " . $getpost3['id']; 101 $getpings = "SELECT * FROM pingbacks WHERE post_id = " . $getpost3['id'] . " ORDER BY pubDate ASC";
102 $getpings2 = mysql_query($getpings); 102 $getpings2 = mysql_query($getpings);
103 $i=0; 103 $i=0;
104 while ($getpings3[$i] = mysql_fetch_array($getpings2)) 104 while ($getpings3[$i] = mysql_fetch_array($getpings2))