diff options
Diffstat (limited to 'pages/welcome.php')
| -rwxr-xr-x | pages/welcome.php | 9 |
1 files changed, 6 insertions, 3 deletions
| diff --git a/pages/welcome.php b/pages/welcome.php index 24fd7ad..e267381 100755 --- a/pages/welcome.php +++ b/pages/welcome.php | |||
| @@ -65,14 +65,17 @@ while ($getpost3 = mysql_fetch_array($getpost2)) | |||
| 65 | 'CODED' => $getpost3['slug'], | 65 | 'CODED' => $getpost3['slug'], |
| 66 | 'TITLE' => $getpost3['title'], | 66 | 'TITLE' => $getpost3['title'], |
| 67 | 'AUTHOR' => $getpost3['author'], | 67 | 'AUTHOR' => $getpost3['author'], |
| 68 | 'TAG1' => $getpost3['tag1'], | ||
| 69 | 'TAG2' => $getpost3['tag2'], | ||
| 70 | 'TAG3' => $getpost3['tag3'], | ||
| 71 | 'PLURALCOMMENT' => (isset($plural) ? $plural : ''), | 68 | 'PLURALCOMMENT' => (isset($plural) ? $plural : ''), |
| 72 | 'COMMENTS' => $comText, | 69 | 'COMMENTS' => $comText, |
| 73 | 'RATING' => $getpost3['rating'], | 70 | 'RATING' => $getpost3['rating'], |
| 74 | 'TEXT' => parseBBCode($getpost3['text']))); | 71 | 'TEXT' => parseBBCode($getpost3['text']))); |
| 75 | 72 | ||
| 73 | $tags = unserialize($getpost3['tags']); | ||
| 74 | foreach ($tags as $tag) | ||
| 75 | { | ||
| 76 | $template->adds_ref_sub($curID, 'TAGS', array('TAG' => $tag)); | ||
| 77 | } | ||
| 78 | |||
| 76 | $curID++; | 79 | $curID++; |
| 77 | } | 80 | } |
| 78 | 81 | ||
