diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2008-12-07 19:29:33 -0500 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2008-12-07 19:29:33 -0500 |
commit | 1d9f883cd824f5f70adfcc9e4692e1ff7ba465eb (patch) | |
tree | afe15582873726d964b62ff0ad11b36bfe0a2579 /pages/blog.php | |
parent | eff957fc6c3f9fb2939e7fd9e28ed27a7ea28306 (diff) | |
download | fourisland-1d9f883cd824f5f70adfcc9e4692e1ff7ba465eb.tar.gz fourisland-1d9f883cd824f5f70adfcc9e4692e1ff7ba465eb.tar.bz2 fourisland-1d9f883cd824f5f70adfcc9e4692e1ff7ba465eb.zip |
Moved pingbacks up in layout
They look better up there. :)
Diffstat (limited to 'pages/blog.php')
-rwxr-xr-x | pages/blog.php | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/pages/blog.php b/pages/blog.php index ab198a0..009326c 100755 --- a/pages/blog.php +++ b/pages/blog.php | |||
@@ -81,23 +81,20 @@ if (isset($_GET['post'])) | |||
81 | } | 81 | } |
82 | 82 | ||
83 | $template->display(); | 83 | $template->display(); |
84 | $page_id = 'updates-' . $getpost3['id']; | ||
85 | include('includes/comments.php'); | ||
86 | 84 | ||
87 | $getrelated = "SELECT *, MATCH (title, text) AGAINST (\"" . addslashes($getpost3['title']) . "\") AS score FROM updates WHERE MATCH (title, text) AGAINST (\"" . addslashes($getpost3['title']) . "\") AND id <> " . $getpost3['id'] . " LIMIT 0,5"; | 85 | $getpings = "SELECT * FROM pingbacks WHERE post_id = " . $getpost3['id']; |
88 | $getrelated2 = mysql_query($getrelated); | 86 | $getpings2 = mysql_query($getpings); |
89 | $i=0; | 87 | $i=0; |
90 | while ($getrelated3[$i] = mysql_fetch_array($getrelated2)) | 88 | while ($getpings3[$i] = mysql_fetch_array($getpings2)) |
91 | { | 89 | { |
92 | if ($i==0) | 90 | if ($i==0) |
93 | { | 91 | { |
94 | $template = new FITemplate('related'); | 92 | $template = new FITemplate('pingbacks'); |
95 | } | 93 | } |
96 | 94 | ||
97 | $template->adds_block('POST', array( 'TITLE' => $getrelated3[$i]['title'], | 95 | $template->adds_block('PINGBACK', array( 'TITLE' => $getpings3[$i]['title'], |
98 | 'CODED' => $getrelated3[$i]['slug'], | 96 | 'URL' => $getpings3[$i]['url'], |
99 | 'AUTHOR' => $getrelated3[$i]['author'], | 97 | 'DATE' => date('F d<\S\U\P>S</\S\U\P> Y', strtotime($getpings3[$i]['pubDate'])))); |
100 | 'DATE' => date('F d<\S\U\P>S</\S\U\P> Y',strtotime($getrelated3[$i]['pubDate'])))); | ||
101 | $i++; | 98 | $i++; |
102 | } | 99 | } |
103 | 100 | ||
@@ -106,19 +103,23 @@ if (isset($_GET['post'])) | |||
106 | $template->display(); | 103 | $template->display(); |
107 | } | 104 | } |
108 | 105 | ||
109 | $getpings = "SELECT * FROM pingbacks WHERE post_id = " . $getpost3['id']; | 106 | $page_id = 'updates-' . $getpost3['id']; |
110 | $getpings2 = mysql_query($getpings); | 107 | include('includes/comments.php'); |
108 | |||
109 | $getrelated = "SELECT *, MATCH (title, text) AGAINST (\"" . addslashes($getpost3['title']) . "\") AS score FROM updates WHERE MATCH (title, text) AGAINST (\"" . addslashes($getpost3['title']) . "\") AND id <> " . $getpost3['id'] . " LIMIT 0,5"; | ||
110 | $getrelated2 = mysql_query($getrelated); | ||
111 | $i=0; | 111 | $i=0; |
112 | while ($getpings3[$i] = mysql_fetch_array($getpings2)) | 112 | while ($getrelated3[$i] = mysql_fetch_array($getrelated2)) |
113 | { | 113 | { |
114 | if ($i==0) | 114 | if ($i==0) |
115 | { | 115 | { |
116 | $template = new FITemplate('pingbacks'); | 116 | $template = new FITemplate('related'); |
117 | } | 117 | } |
118 | 118 | ||
119 | $template->adds_block('PINGBACK', array( 'TITLE' => $getpings3[$i]['title'], | 119 | $template->adds_block('POST', array( 'TITLE' => $getrelated3[$i]['title'], |
120 | 'URL' => $getpings3[$i]['url'], | 120 | 'CODED' => $getrelated3[$i]['slug'], |
121 | 'DATE' => date('F d<\S\U\P>S</\S\U\P> Y', strtotime($getpings3[$i]['pubDate'])))); | 121 | 'AUTHOR' => $getrelated3[$i]['author'], |
122 | 'DATE' => date('F d<\S\U\P>S</\S\U\P> Y',strtotime($getrelated3[$i]['pubDate'])))); | ||
122 | $i++; | 123 | $i++; |
123 | } | 124 | } |
124 | 125 | ||