Понедельников НЕТ!
Регистрация или вход Регистрация или вход Избранное на этом сайте | Главная | Анкета | Рекомендовать | Обратная связь | В избранное | Сделать домашней
Скачать SSDForums
Скачать SSDForums 1.0.1 Скачать SSDForums 1.0.1
Скачать SSDForums 1.0.1 SP1 Скачать SSDForums 1.0.1 SP1
Скачать SSDForums 1.0.1 SP2 Скачать SSDForums 1.0.1 SP2
SSD Forums 1.0.1 SP3 only Slaed 3.5 Pro SSD Forums 1.0.1 SP3 only Slaed 3.5 Pro
SSD Forums 1.0.1 SP4-beta only Slaed 4.1 Pro SSD Forums 1.0.1 SP4-beta only Slaed 4.1 Pro
Jewelry Сase Team
Скачать Ruby Chat 0.1.1 Скачать Ruby Chat 0.1.1
Меню
Главная
Форум
Магазин цифровых товаров

Новости
Подписка на новости
Темы новостей
Добавить новость

Каталог файлов
Карта файлового архива
Публикации

Опросы
Анкета пользователя
Чат

BestMaker
Викторина
Архив новостей
Карманный оракул
Поиск по сайту с помощью Яндекс
Поиск по сайту с помощью Google
Фото дня
Для души
Погода на 3 дня
IndexCat
IndexTop
Map_Pages
Поиск по сайту









Подписка на новости
Ваше имя:
Ваш E-Mail:*
Секретный код:
Секретный код
Повторить:*
Интересное в сети

Sape — это система купли-продажи ссылок
с главных и внутренних страниц сайтов
Форум -> News (модуль и блок) -> Косяк с Комментами
Косяк с Комментами
Yor_i_k Дата: 20.05.2008, в 09:32 | Сообщение №1
Yor_i_k
Гость
Пользователь №: 386
Сообщений: 4

Всё работало ! Учился на ушибках других читая форум, дополнял-обновлял. Когда это произошло ума не приложу, как исправить тем более.
В блоке Последние комментарии текст видно, при переходе к новостям - косяк.
Вот мой  News
Цитата
PHP - Код
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<?php
if (!defined("MODULE_FILE")) {
    
Header("Location: ../../index.php");
    exit;
}
$module_name = basename(dirname(__FILE__));
get_lang($module_name);
require_once(
"function/comments.php");
include(
"config/config_fields.php");

function
news($new_topic=0) {
    global
$db, $storyhome, $topicname, $topicimage, $topictext, $datetime, $user, $prefix, $multilingual, $currentlang, $sitename, $user_news, $pagenum, $anonymous, $module_name, $pagetitle, $defis;
    
$querylang = ($multilingual == 1) ? "AND (alanguage='$currentlang' OR alanguage='')" : "";
    
$new_topic = (isset($new_topic)) ? intval($new_topic) : 0;
    
$storynum = (isset($user[3]) && $user_news == 1) ? intval($user[3]) : $storyhome;
    if (
$new_topic == 0) {
        
$qdb = "WHERE ihome='0' AND s.time <= NOW() AND status='1'";
        
$pagetitle = "$defis "._NEWS."";
        
head();
    } else {
        
$qdb = "WHERE topic='$new_topic' AND s.time <= NOW() AND status='1'";
        list(
$topic_title) = $db->sql_fetchrow($db->sql_query("SELECT topictext FROM ".$prefix."_topics WHERE topicid='$new_topic'"));
        
$pagetitle = "$defis "._NEWS." $defis $topic_title";
        
head();
        
OpenTable();
        if (!
$topic_title) {
            echo
"<center><font class=\"title\">$sitename</font>
        } else {
            echo "
<center><font class=\"title\">$topic_title</font>
            ."
[ <a href=\"index.php\">"._GOTOHOME."</a> | <a href=\"index.php?name=Topics\">"._SELECTNEWTOPIC."</a> ]</center>";
        }
        
CloseTable();
    }
    
$pagenum = (!$pagenum) ? 1 : $pagenum;
    
$offset = ($pagenum-1) * $storynum;
    
$offset = intval($offset);
    
$storynum = intval($storynum);
    
$result = $db->sql_query("SELECT sid, s.catid, s.aid, s.title, s.time, s.hometext, s.bodytext, s.comments, s.counter, s.topic, s.acomm, s.score, s.ratings, c.title, t.topicid, t.topicname, t.topicimage, t.topictext FROM ".$prefix."_stories AS s LEFT JOIN ".$prefix."_stories_cat AS c on (s.catid=c.catid) LEFT JOIN ".$prefix."_topics AS t on (s.topic=t.topicid) $qdb $querylang ORDER BY s.time DESC LIMIT $offset, $storynum");
    while (list(
$s_sid , $catid, $aid, $title, $time, $hometext, $bodytext, $comments, $counter, $topic, $acomm, $score, $ratings, $ctitle, $topicid, $topicname, $topicimage, $topictext) = $db->sql_fetchrow($result)) {
        if (
$catid > 0) $cattitle = $ctitle;
        
$topicimage = ($topicimage) ? $topicimage : "AllTopics.gif";
        
$topictext = ($topictext) ? $topictext : ""._ALL."";
        
formatTimestamp($time);
        
$c_count = $comments;
        if (
$catid != 0) {
            
$title_cat = text_filter($ctitle);
            
$story_link = "<a href=\"index.php?name=News&op=article&sid=$s_sid\" title=\"$title_cat - $title\">";
            
$story_link_c = "<a href=\"index.php?name=News&op=article&sid=$s_sid#$s_sid\" title=\"$title_cat - $title\">";
            
$title = "<a href=\"index.php?name=News&op=cat&catid=$catid\" title=\"$title_cat\"><font class=\"storycat\">$title_cat</a> - </font><a href=\"index.php?name=News&op=article&sid=$s_sid\" title=\"$title\"><font class=\"storytitle\">$title</font></a>";
        } else {
            
$story_link = "<a href=\"index.php?name=News&op=article&sid=$s_sid\" title=\"$title\">";
            
$story_link_c = "<a href=\"index.php?name=News&op=article&sid=$s_sid#$s_sid\" title=\"$title\">";
            
$title = "<a href=\"index.php?name=News&op=article&sid=$s_sid\" title=\"$title\"><font class=\"storytitle\">$title</font></a>";
        }
        if (
$acomm == 0) {
            if (
$c_count == 0) {
                
$m_com = "| $story_link_c"._COMMENTS."</a>";
            } elseif (
$c_count == 1) {
                
$m_com = "| $story_link_c"._COMMENT.": $c_count</a>";
            } elseif (
$c_count > 1) {
                
$m_com = "| $story_link_c"._COMMENTS.": $c_count</a>";
            }
        } else {
            
$m_com = "";
        }
// Статья
$link = ($aid) ? "$aid" : $anonymous;
$link_array = parse_url($link);
$patch = (isset($link_array['query'])) ? $link_array['path'] . '?' . $link_array['query'] : $link_array['path'];
$new_link = 'Источник: <a href="http://' . $link_array['host'] . $patch . '">' . $link_array['host'] . '</a>';

$morelink = "
<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
<tr>
<td align=\"left\">
$story_link<b>"._READMORE."</b></a>
| "
._PDATE.": $datetime
|  
$new_link
| "
._READS.": $counter $m_com
<td align=\"right\"><a href=\"index.php?name=News&op=printpage&sid=
$s_sid\"><img src=\"images/blocks/Print.gif\" border=\"0\" alt=\""._PRINTER."\" title=\""._PRINTER."\" align=\"center\"></a>  <a href=\"index.php?name=News&op=friendsend&sid=$s_sid\"><img src=\"images/blocks/Contact.gif\" border=\"0\" alt=\""._FRIEND."\" title=\""._FRIEND."\" align=\"center\"></a></td></tr></table>";
//
        
if ($score != 0) {
            
$rated = substr($score / $ratings, 0, 4);
        } else {
            
$rated = 0;
        }
        
$morelink = str_replace(" |  | ", " | ", $morelink);
        
$cimg = ($topicimage) ? "<a href=\"index.php?name=$module_name&new_topic=$topicid\"><img src=\"images/topics/".$topicimage."\" border=\"0\" alt=\"$topictext\" title=\"$topictext\" align=\"right\" hspace=\"10\" vspace=\"10\"></a>" : "";
        
basic($aid, $datetime, $title, $counter, bb_decode($hometext), $morelink, $topicid, $cimg, $topicname);
    }
    list(
$numstories) = $db->sql_fetchrow($db->sql_query("SELECT Count(sid) AS csid FROM ".$prefix."_stories AS s $qdb $querylang"));
    
$numpages = ceil($numstories / $storynum);
    if (isset(
$new_topic)) {
        
num_page($module_name, $numstories, $numpages, $storynum, "new_topic=".$new_topic."&");
    } else {
        
num_page($module_name, $numstories, $numpages, $storynum);
    }
    
foot();
}

function
cat($catid) {
    global
$storyhome, $topicname, $topicimage, $topictext, $datetime, $user, $prefix, $multilingual, $currentlang, $db, $module_name, $pagenum;
    
head();
    
$querylang = ($multilingual == 1) ? "AND (alanguage='$currentlang' OR alanguage='')" : "";
    
$storynum = (isset($user[3])) ? intval($user[3]) : $storyhome;
    
$catid = intval($catid);
    
$pagenum = (!$pagenum) ? 1 : $pagenum;
    
$offset = ($pagenum-1) * $storynum;
    
$offset = intval($offset);
    
$storynum = intval($storynum);
    
$sql = "SELECT sid, s.catid, s.aid, s.title, s.time, s.hometext, s.bodytext, s.comments, s.counter, s.topic, s.acomm, s.score, s.ratings, c.title, t.topicid, t.topicname, t.topicimage, t.topictext FROM ".$prefix."_stories AS s LEFT JOIN ".$prefix."_stories_cat AS c on (s.catid=c.catid) LEFT JOIN ".$prefix."_topics AS t on (s.topic=t.topicid) WHERE s.catid='$catid' AND s.time <= NOW() AND status='1' $querylang ORDER BY s.time DESC LIMIT $offset, $storynum";
    
$result = $db->sql_query($sql);
    while (list(
$s_sid , $catid, $aid, $title, $time, $hometext, $bodytext, $comments, $counter, $topic, $acomm, $score, $ratings, $ctitle, $topicid, $topicname, $topicimage, $topictext) = $db->sql_fetchrow($result)) {
        
$n_catid = intval($catid);
        if (
$catid > 0) $cattitle = $ctitle;
        
$topicimage = ($topicimage) ? $topicimage : "AllTopics.gif";
        
$topictext = ($topictext) ? $topictext : ""._ALL."";
        
formatTimestamp($time);
        
$c_count = $comments;
        
$title_cat = text_filter($ctitle);
        
$story_link = "<a href=\"index.php?name=News&op=article&sid=$s_sid\" title=\"$title_cat - $title\">";
        
$story_link_c = "<a href=\"index.php?name=News&op=article&sid=$s_sid#$s_sid\" title=\"$title_cat - $title\">";
        
$title = "<a href=\"index.php?name=News&op=cat&catid=$catid\" title=\"$title_cat\"><font class=\"storycat\">$title_cat</a> - </font><a href=\"index.php?name=News&op=article&sid=$s_sid\" title=\"$title\"><font class=\"storytitle\">$title</font></a>";
        if (
$acomm == 0) {
            if (
$c_count == 0) {
                
$m_com = "| $story_link_c"._COMMENTS."</a>";
            } elseif (
$c_count == 1) {
                
$m_com = "| $story_link_c"._COMMENT.": $c_count</a>";
            } elseif (
$c_count > 1) {
                
$m_com = "| $story_link_c"._COMMENTS.": $c_count</a>";
            }
        } else {
            
$m_com = "";
        }
// Статья
$link = ($aid) ? "$aid" : $anonymous;
$link_array = parse_url($link);
$patch = (isset($link_array['query'])) ? $link_array['path'] . '?' . $link_array['query'] : $link_array['path'];
$new_link = 'Источник: <a href="http://' . $link_array['host'] . $patch . '">' . $link_array['host'] . '</a>';

$morelink = "
<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
<tr>
<td align=\"left\">
$story_link<b>"._READMORE."</b></a>
| "
._PDATE.": $datetime
|  
$new_link
| "
._READS.": $counter $m_com
<td align=\"right\"><a href=\"index.php?name=News&op=printpage&sid=
$s_sid\"><img src=\"images/blocks/Print.gif\" border=\"0\" alt=\""._PRINTER."\" title=\""._PRINTER."\" align=\"center\"></a>  <a href=\"index.php?name=News&op=friendsend&sid=$s_sid\"><img src=\"images/blocks/Contact.gif\" border=\"0\" alt=\""._FRIEND."\" title=\""._FRIEND."\" align=\"center\"></a></td></tr></table>";
//
        
if ($score != 0) {
            
$rated = substr($score / $ratings, 0, 4);
        } else {
            
$rated = 0;
        }
        
$morelink = str_replace(" |  | ", " | ", $morelink);
        
$cimg = ($topicimage) ? "<a href=\"index.php?name=$module_name&new_topic=$topicid\"><img src=\"images/topics/".$topicimage."\" border=\"0\" alt=\"$topictext\" title=\"$topictext\" align=\"right\" hspace=\"10\" vspace=\"10\"></a>" : "";
        
basic($aid, $datetime, $title, $counter, bb_decode($hometext), $morelink, $topicid, $cimg, $topicname);
    }
    list(
$numstories) = $db->sql_fetchrow($db->sql_query("SELECT Count(catid) AS csid FROM ".$prefix."_stories AS s WHERE s.catid='$n_catid' AND s.time <= NOW() AND status='1' $querylang"));
    
$numpages = ceil($numstories / $storynum);
    
num_page($module_name, $numstories, $numpages, $storynum, "op=cat&catid=".$n_catid."&");
    
foot();
}

function
article($sid) {
    global
$db, $storyhome, $topicname, $topicimage, $topictext, $datetime, $user, $prefix, $conffi, $multilingual, $currentlang, $sitename, $user_news, $pagenum, $anonymous, $module_name, $pagetitle, $defis, $admin_file, $hometext, $bodytext;
    
$sid = intval($sid);
    
$result = $db->sql_query("SELECT s.catid, s.aid, s.time, s.title, s.hometext, s.bodytext, s.field, s.counter, s.topic, s.acomm, s.score, s.ratings, s.associated, c.title, t.topicid, t.topicname, t.topicimage, t.topictext FROM ".$prefix."_stories AS s LEFT JOIN ".$prefix."_stories_cat AS c on (s.catid=c.catid) LEFT JOIN ".$prefix."_topics AS t on (s.topic=t.topicid) WHERE sid='$sid' AND s.time <= NOW() AND status='1'");
    if (
$db->sql_numrows($result) == 1) {
        list(
$catid, $aid, $time, $title, $hometext, $bodytext, $field, $counter, $topic, $acomm, $score, $ratings, $associated, $ctitle, $topicid, $topicname, $topicimage, $topictext) = $db->sql_fetchrow($result);
        
$db->sql_query("UPDATE ".$prefix."_stories SET counter=counter+1 where sid='$sid'");
        
$pagetitle = ($catid != 0) ? "$defis "._NEWS." $defis $ctitle $defis $title" : "$defis "._NEWS." $defis $title";
        
head();
        
formatTimestamp($time);
        
$fields = ($conffi['news']) ? fields_out($field, $conffi['news']) : "";
        
$fields = ($fields) ? "
        
$bodytext = (!$bodytext) ? "".$hometext."".$fields."" : "".$hometext."
        
$title = ($catid != 0) ? "<a href=\"index.php?name=$module_name&op=cat&catid=$catid\"><font class=\"storycat\">$ctitle</a> - </font><font class=\"storytitle\">$title</font>" : "<font class=\"storytitle\">$title</font>";
        
$topicimage = ($topicimage) ? $topicimage : "AllTopics.gif";
        
$topictext = ($topictext) ? $topictext : ""._ALL."";
        
$posted = ($aid) ? ""._POSTEDBY.": <a href=\"index.php?name=Account&op=info&uname=$aid\">$aid</a> | "._DATE.": $datetime" : ""._POSTEDBY.": $anonymous | "._DATE.": $datetime";
        
$cimg = ($topicimage) ? "<a href=\"index.php?name=$module_name&new_topic=$topicid\"><img src=\"images/topics/".$topicimage."\" border=\"0\" alt=\"$topictext\" title=\"$topictext\" align=\"right\" hspace=\"10\" vspace=\"10\"></a>" : "";
        
basic($aid, $datetime, $title, $counter, bb_decode($bodytext), $posted, $topicid, $cimg, $topicname);
        
OpenTable();
        echo
"<center>[ <a href=\"index.php?name=$module_name&op=printpage&sid=$sid\" title=\""._PRINTER."\">"._PRINTER."</a> | <a href=\"index.php?name=$module_name&op=friendsend&sid=$sid\" title=\""._FRIEND."\">"._FRIEND."</a>";
        if (
is_admin($admin)) {
            echo
" | <a href=\"".$admin_file.".php?op=AddStory\">"._ADD."</a> | <a href=\"".$admin_file.".php?op=AddStory&id=$sid\">"._EDIT."</a> | <a href=\"".$admin_file.".php?op=DeleteStory&id=$sid\">"._DELETE."</a> ]</center>";
        } else {
            echo
" ]</center>";
        }
        
CloseTable();
        
OpenTable();
        echo
"<center><font class=\"option\">"._RATEARTICLE."</center></font></center>
        ."
<table align=\"center\"><tr><td>"._AVERAGESCORE.": </td><td>".vote_graphic($ratings, $score)."</td><td>"._VOTES.":</td><td>$ratings</td></tr></table>"
        
."<hr><table width=\"100%\" align=\"center\" border=\"0\"><tr><td><form action=\"index.php?name=$module_name\" method=\"post\">"
        
."<input type=\"hidden\" name=\"sid\" value=\"$sid\">"
        
."<input type=\"hidden\" name=\"op\" value=\"ratearticle\">"
        
."<input type=\"radio\" name=\"score\" value=\"5\"> <img src=\"images/articles/stars-5.gif\" border=\"0\" alt=\""._EXCELLENT."\" title=\""._EXCELLENT."\"></td>"
        
."<td><input type=\"radio\" name=\"score\" value=\"4\"> <img src=\"images/articles/stars-4.gif\" border=\"0\" alt=\""._VERYGOOD."\" title=\""._VERYGOOD."\"></td>"
        
."<td><input type=\"radio\" name=\"score\" value=\"3\"> <img src=\"images/articles/stars-3.gif\" border=\"0\" alt=\""._GOOD."\" title=\""._GOOD."\"></td>"
        
."<td><input type=\"radio\" name=\"score\" value=\"2\"> <img src=\"images/articles/stars-2.gif\" border=\"0\" alt=\""._REGULAR."\" title=\""._REGULAR."\"></td>"
        
."<td><input type=\"radio\" name=\"score\" value=\"1\"> <img src=\"images/articles/stars-1.gif\" border=\"0\" alt=\""._BAD."\" title=\""._BAD."\"></td>"
        
."<td align=\"right\"><input type=\"submit\" value=\""._CASTMYVOTE."\"></td></tr></form></table>";
        
CloseTable();
        if (
$associated != "") {
            
OpenTable();
            echo
"<center><font class=\"option\">"._ASTOPIC."</font></center>
            
$asso_t = explode("-", $associated);
            for (
$i = 0; $i<sizeof($asso_t); $i++) {
                if (
$asso_t[$i] != "") {
                    
$t = intval($asso_t[$i]);
                    
$result = $db->sql_query("SELECT sid, title, time FROM ".$prefix."_stories WHERE topic='$t' AND sid!='$sid' ORDER BY time DESC LIMIT 0, 10");
                    while(list(
$s_sid, $title, $time)= $db->sql_fetchrow($result)) {
                        echo "
<table><tr><td><img src=\"images/blocks/News.gif\" border=\"0\" title=\"$title\"></td><td>$time - <a href=\"index.php?name=News&op=article&sid=$s_sid\" title=\"$title\">$title</a></td></tr></table>";
                    }
                }
            }
            
CloseTable();
        }
        if (
$acomm == 0) {
            echo
"<a name=\"$sid\"></a>";
            
ShowComments($sid);
        }
        
foot();
    } else {
        
Header("Location: index.php");
    }
}

function
ratearticle($sid, $score) {
    global
$prefix, $db, $ratecookie;
    
$score = intval($score);
    
$sid = intval($sid);
    if (
$score) {
        if (
$score > 5) $score = 5;
        if (
$score < 1) $score = 1;
        if (
$score != 1 AND $score != 2 AND $score != 3 AND $score != 4 AND $score != 5) {
            
Header("Location: index.php");
            die();
        }
        if (isset(
$ratecookie)) $r_cookie = explode(":", addslashes(base64_decode($ratecookie)));
        for (
$i = 0; $i < sizeof($r_cookie); $i++) {
            if (
$r_cookie[$i] == $sid) $a = 1;
        }
        if (
$a == 1) {
            
Header("Location: index.php?name=News&op=ratecomplete&sid=$sid&rated=1");
        } else {
            
$result = $db->sql_query("UPDATE ".$prefix."_stories SET score=score+$score, ratings=ratings+1 WHERE sid='$sid'");
            
$info = base64_encode("$rcookie$sid:");
            
setcookie("ratecookie","$info",time()+3600);
            
update_points(7);
            
Header("Location: index.php?name=News&op=ratecomplete&sid=$sid");
        }
    } else {
        
head();
        
title(""._ARTICLERATING."");
        
OpenTable();
        echo
"<center>"._DIDNTRATE."
        CloseTable();
        foot();
    }
}

function ratecomplete(
$sid, $rated=0) {
    head();
    title(""._ARTICLERATING."");
    OpenTable();
    if (
$rated == 0) {
        echo "
<center>"._THANKSVOTEARTICLE."
        
."[ <a href=\"index.php?name=News&op=article&sid=$sid\">"._BACKTOARTICLEPAGE."</a> ]</center>";
    } elseif (
$rated == 1) {
        echo
"<center>"._ALREADYVOTEDARTICLE."
        ."
[ <a href=\"index.php?name=News&op=article&sid=$sid\">"._BACKTOARTICLEPAGE."</a> ]</center>";
    }
    
CloseTable();
    
foot();
}

function
printpage($sid) {
    global
$site_logo, $homeurl, $sitename, $datetime, $prefix, $db, $module_name, $defis, $ThemeSel;
    
$defis = urldecode($defis);
    
$sid = intval($sid);
    
$result = $db->sql_query("SELECT title, time, hometext, bodytext, topic FROM ".$prefix."_stories WHERE sid='$sid' AND time <= NOW() AND status='1'");
    if (
$db->sql_numrows($result) == 1) {
        list(
$title, $time, $hometext, $bodytext, $topic) = $db->sql_fetchrow($result);
        list(
$topictext) = $db->sql_fetchrow($db->sql_query("SELECT topictext FROM ".$prefix."_topics WHERE topicid='$topic'"));
        
formatTimestamp($time);
        echo
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n"
        
."<html>\n"
        
."<head>\n"
        
."<meta http-equiv=\"content-type\" content=\"text/html; charset="._CHARSET."\">\n"
        
."<link rel=\"stylesheet\" href=\"templates/$ThemeSel/style.css\" type=\"text/css\">\n"
        
."<title>$title $defis "._NEWS." $defis $sitename</title></head><body><table border=\"0\" align=\"center\"><tr><td><table border=\"0\" width=\"640\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table border=\"0\" width=\"640\" cellpadding=\"20\" cellspacing=\"1\" class=\"bodyline\"><tr><td><center><a href=\"$homeurl\"><img src=\"images/logos/$site_logo\" border=\"0\" alt=\"$sitename\"></a>
    } else {
        Header("
Location: index.php");
    }
}

function friendsend(
$sid) {
    global
$user, $userinfo, $prefix, $db, $module_name, $pagetitle, $defis, $stop;
    
$sid = intval($sid);
    
$result = $db->sql_query("SELECT title FROM ".$prefix."_stories WHERE sid='$sid' AND time <= NOW() AND status='1'");
    if (
$db->sql_numrows($result) == 1) {
        list(
$title) = $db->sql_fetchrow($result);
        
$title = stripslashes($title);
        
$pagetitle = "$defis "._NEWS." $defis $title $defis "._FRIEND."";
        head();
        title(""._FRIEND."");
        if (
$stop) warning($stop, "", "", 1);
        OpenTable();
        echo "
<center><font class=\"content\"><b>"._YOUSENDSTORY." \"$title\" "._TOAFRIEND."</b></center>
        ."
<form action=\"index.php?name=$module_name\" method=\"post\">"
        
."<input type=\"hidden\" name=\"sid\" value=\"$sid\">";
        if (
is_user($user)) {
            
getusrinfo($user);
            
$yn = $userinfo['user_name'];
            
$ye = $userinfo['user_email'];
        }
        echo
"<table align=\"center\"><tr><td>"._YOURNAME.":</td><td><input type=\"text\" name=\"yname\" value=\"$yn\" size=\"30\"></td></tr>"
        
."<tr><td>"._YOUREMAIL.":</td><td><input type=\"text\" name=\"ymail\" value=\"$ye\" size=\"30\"></td></tr>"
        
."<tr><td>"._FFRIENDNAME.":</td><td><input type=\"text\" name=\"fname\" size=\"30\"></td></tr>"
        
."<tr><td>"._FFRIENDEMAIL.":</td><td><input type=\"text\" name=\"fmail\" size=\"30\"></td></tr></table>
        ."
<center><input type=\"hidden\" name=\"op\" value=\"sendstory\">\n"
        
."<input type=\"submit\" value="._SEND.">\n"
        
."</form></center>\n";
        
CloseTable();
        
foot();
    } else {
        
Header("Location: index.php");
    }
}

function
sendstory($sid, $yname, $ymail, $fname, $fmail) {
    global
$sitename, $homeurl, $prefix, $db, $module_name, $stop;
    
checkemail($ymail);
    
checkemail($fmail);
    if (!
$stop) {
        
$sid = intval($sid);
        list(
$title, $time, $topic) = $db->sql_fetchrow($db->sql_query("SELECT title, time, topic FROM ".$prefix."_stories WHERE sid='$sid'"));
        
$title = stripslashes($title);
        
$time = stripslashes($time);
        
$topic = intval($topic);
        list(
$topictext) = $db->sql_fetchrow($db->sql_query("SELECT topictext FROM ".$prefix."_topics WHERE topicid='$topic'"));
        
$topictext = stripslashes($topictext);
        
$subject = "$sitename - "._INTERESTING."";
        
$message = ""._HELLO." $fname!
        mail_send(
$fmail, $ymail, $subject, $message, 0, 3);
        update_points(6);
        head();
        title(""._FRIEND."");
        warning(""._FSTORY."
\"$title\" "._HASSENT." $fname", "?name=$module_name&op=article&sid=$sid", 5, 2);
        
foot();
    } else {
        
friendsend($sid);
    }
}

switch (
$op) {
    default:
    
news($new_topic);
    break;

    case
"cat":
    
cat($catid);
    break;
    
    case
"article":
    
article($sid);
    break;
    
    case
"ratearticle":
    
ratearticle($sid, $score);
    break;

    case
"ratecomplete":
    
ratecomplete($sid, $rated);
    break;

    case
"printpage":
    
printpage($sid);
    break;
    
    case
"sendstory":
    
sendstory($sid, $yname, $ymail, $fname, $fmail);
    break;

    case
"friendsend":
    
friendsend($sid);
    break;
}
?>


_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
Отредактированно Yor_i_k 20.05.2008 г. в 09:34:21


Прикрепленные файлы:
51.57 KB
Serg_pnz Дата: 20.05.2008, в 09:51 | Сообщение №2
Serg_pnz
Администратор
Пользователь №: 1
Сообщений: 2242

А в других модулях комменты нормально выводятся?
Это я к тому, что их вывод никак не связан с модулем, а копать во-первых надо функцию ShowComments.
Попробуй на время заменить файл function/comments.php на файл из системы, исправится глюк?

Не все кальсоны с оторванными пуговицами - брюки. © Serg_pnz
"...даме водки? Это чистый спирт!" © кот Бегемот
Yor_i_k Дата: 20.05.2008, в 10:45 | Сообщение №3
Yor_i_k
Гость
Пользователь №: 386
Сообщений: 4

сравнивал они одинаковые.
похоже понял в чём проблема была, шаблон не родной, там  всё тяп-ляп.
вот стандартный:
Код
1
<a name="$id"></a><table width="100%" border="0" cellspacing="0" cellpadding="0" class="middle"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" class="bgcolor4"><tr><th>$name</th><th>$info</th></tr><tr class="bgcolor2"><td align="center" valign="top">$avatar</td><td width="80%" valign="top">$text</td></tr><tr class="bgcolor1"><td>$rate</td><td>$link</td></tr></table></td></tr></table>

а это мой:
Цитата
PHP - Код
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
<a name="$carg[0]"></a>
<
img src="templates/$ThemeSel/spacer.png" width="1" height="3" alt="" />
<
table class="cblock" width="100%" border="0" cellspacing="0" cellpadding="0">
  <
tr>
    <
td width="3"><img src="templates/$ThemeSel/images/cblock/cblock_left_top.gif" width="3" height="3" alt="" /></td>
    <
td class="cblock-top"><img src="templates/$ThemeSel/spacer.png" width="1" height="3" alt="" /></td>
    <
td width="3"><img src="templates/$ThemeSel/images/cblock/cblock_right_top.gif" width="3" height="3" alt="" /></td>
  </
tr>
  <
tr valign="top">
    <
td class="cblock-left"></td>
    <
td>
      <
div class="maincont" style="border: 1px solid #EEEEEE;">
        <
div class="avatar">
          
$carg[3]
          <
div class="clr"></div>
          <
span>
            <
div class="rate">$carg[5]</div>
          </
span>
        </
div>
        <
div class="cominfo">
          <
span class="mid">$carg[1]</span>
          <
span class="ttfrm">, $carg[8]</span>
          <
span class="small">$carg[9] $carg[7]</span>
        </
div>
        
$carg[4]
        <
div class="clr"></div>
        <
div style="text-align: right;">$carg[11] $carg[12] $carg[14]</div>
      </
div>
    <
td class="cblock-right"></td>
  </
tr>
  <
tr>
    <
td width="3"><img src="templates/$ThemeSel/images/cblock/cblock_left_bottom.gif" width="3" height="7" alt="" /></td>
    <
td class="cblock-bottom"><img src="templates/$ThemeSel/spacer.png" width="1" height="7" alt="" /></td>
    <
td width="3"><img src="templates/$ThemeSel/images/cblock/cblock_right_bottom.gif" width="3" height="7" alt="" /></td>
  </
tr>
</
table>
?>

щас посмотрю что сделаю.

зы. 38,8 дают о себе знать  

Вы не можете ответить в тему анонимно, пожалуйста, войдите или зарегистрируйтесь!


SetLinks error: Incorrect password!
Реклама
Главная | Форум | Новости | Подписка на новости | Темы новостей | Добавить новость | Каталог файлов | Карта файлового архива | Публикации | Опросы | Анкета пользователя | Чат | BestMaker | Викторина | Архив новостей | Карманный оракул | Поиск по сайту с помощью Яндекс | Поиск по сайту с помощью Google | Фото дня | Для души | Погода на 3 дня | IndexCat | IndexTop | Map_Pages | Весь Оракул

Rambler's Top100

Генерация страницы: 0.316 сек. и 17 запросов к базе данных за 0.023 сек.
Web site engine code is Copyright © 2006 by SLAED CMS. All rights reserved.