Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        modules
5
 * @package         news
6
 * @author          WebsiteBaker Project
7
 * @copyright       2009-2013, WebsiteBaker Org. e.V.
8
 * @link            http://www.websitebaker2.org/
9
 * @license         http://www.gnu.org/licenses/gpl.html
10
 * @platform        WebsiteBaker 2.8.x
11
 * @requirements    PHP 5.2.2 and higher
12
 * @version         $Id: view.php 2069 2014-01-03 00:54:16Z darkviper $
13
 * @filesource      $HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/modules/news/view.php $
14
 * @lastmodified    $Date: 2014-01-03 01:54:16 +0100 (Fri, 03 Jan 2014) $
15
 *
16
 */
17

    
18
/* -------------------------------------------------------- */
19
// Must include code to stop this file being accessed directly
20
if(!defined('WB_URL')) {
21
	require_once(dirname(dirname(dirname(__FILE__))).'/framework/globalExceptionHandler.php');
22
	throw new IllegalFileException();
23
}
24
/* -------------------------------------------------------- */
25
global $post_id, $post_section,$TEXT,$MESSAGE;
26
// load module language file
27
$lang = (dirname(__FILE__)) . '/languages/' . LANGUAGE . '.php';
28
require_once(!file_exists($lang) ? (dirname(__FILE__)) . '/languages/EN.php' : $lang );
29

    
30
//overwrite php.ini on Apache servers for valid SESSION ID Separator
31
if(function_exists('ini_set')) {
32
	ini_set('arg_separator.output', '&amp;');
33
}
34

    
35
// Check if there is a start point defined
36
$position = ( isset($_GET['p']) ? intval($_GET['p']) : 0);
37
// Get user's username, display name, email, and id - needed for insertion into post info
38
$users = array();
39
$sql = 'SELECT `user_id`,`username`,`display_name`,`email` FROM `'.TABLE_PREFIX.'users`';
40
if( ($resUsers = $database->query($sql)) ) {
41
	while( $recUser = $resUsers->fetchRow() ) {
42
		$users[$recUser['user_id']] = $recUser;
43
	}
44
}
45
// Get groups (title, if they are active, and their image [if one has been uploaded])
46
if (isset($groups))
47
{
48
	unset($groups);
49
}
50

    
51
$groups[0]['title'] = '';
52
$groups[0]['active'] = true;
53
$groups[0]['image'] = '';
54

    
55
$query_users = $database->query("SELECT group_id,title,active FROM ".TABLE_PREFIX."mod_news_groups WHERE section_id = '$section_id' ORDER BY position ASC");
56
if($query_users->numRows() > 0){
57

    
58
	while( false != ($group = $query_users->fetchRow()) )
59
	{
60
		// Insert user info into users array
61
		$group_id = $group['group_id'];
62
		$groups[$group_id]['title'] = ($group['title']);
63
		$groups[$group_id]['active'] = $group['active'];
64
		if(file_exists(WB_PATH.MEDIA_DIRECTORY.'/.news/image'.$group_id.'.jpg')) {
65
			$groups[$group_id]['image'] = WB_URL.MEDIA_DIRECTORY.'/.news/image'.$group_id.'.jpg';
66
		} else {
67
			$groups[$group_id]['image'] = '';
68
		}
69
	}
70
}
71

    
72
// Check if we should show the main page or a post itself
73
// if(!defined('POST_ID') OR !is_numeric(POST_ID))
74
if(!isset($post_id) || !is_numeric($post_id)){
75

    
76
	// Check if we should only list posts from a certain group
77
	if(isset($_GET['g']) AND is_numeric($_GET['g'])) {
78
		$query_extra = 'AND `group_id`='.(int)$_GET['g'].' ';
79
	} else {
80
		$query_extra = '';
81
	}
82

    
83
	// Check if we should only list posts from a certain group
84
	if(isset($_GET['g']) AND is_numeric($_GET['g'])) {
85
		$query_extra = 'AND `group_id`='.(int)$_GET['g'].' ';
86
	} else {
87
		$query_extra = '';
88
	}
89

    
90
	// Get settings
91
	$setting_header = $setting_post_loop = $setting_footer = $setting_posts_per_page = '';
92
	$sql  = 'SELECT `header`, `post_loop`, `footer`, `posts_per_page` ';
93
	$sql .= 'FROM `'.TABLE_PREFIX.'mod_news_settings` ';
94
	$sql .= 'WHERE `section_id`='.(int)$section_id;
95
	if( ($resSettings = $database->query($sql)) ){
96
		if( ($recSettings = $resSettings->fetchRow()) ) {
97
			foreach($recSettings as $key=>$val){
98
				${'setting_'.$key} = $val;
99
			}
100
		}
101
	}
102
	$t = time();
103
	// Get total number of posts
104
	$sql  = 'SELECT COUNT(*) FROM `'.TABLE_PREFIX.'mod_news_posts` ';
105
	$sql .= 'WHERE `section_id`='.(int)$section_id.' AND `active`=1 ';
106
	$sql .=        'AND `title`!=\'\' '.$query_extra;
107
	$sql .=        'AND (`published_when`=0 OR `published_when`<='.$t.') ';
108
	$sql .=        'AND (`published_until`=0 OR `published_until`>='.$t.') ';
109
	$total_num = intval($database->get_one($sql));
110
	// Work-out if we need to add limit code to sql
111
	if($setting_posts_per_page != 0) {
112
		$limit_sql = " LIMIT $position, $setting_posts_per_page";
113
	} else {
114
		$limit_sql = "";
115
	}
116

    
117
	// Query posts (for this page)
118
	$query_posts = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_news_posts
119
		WHERE section_id = '$section_id' AND active = '1' AND title != ''$query_extra
120
		AND (published_when = '0' OR published_when <= $t) AND (published_until = 0 OR published_until >= $t)
121
		ORDER BY position DESC".$limit_sql);
122
	$num_posts = $query_posts->numRows();
123

    
124
	// Create previous and next links
125
	if($setting_posts_per_page != 0)
126
	{
127
		if($position > 0)
128
		{
129
			if(isset($_GET['g']) AND is_numeric($_GET['g'])) {
130
				$pl_prepend = '<a href="?p='.($position-$setting_posts_per_page).'&amp;g='.$_GET['g'].'">&lt;&lt; ';
131
			} else {
132
				$pl_prepend = '<a href="?p='.($position-$setting_posts_per_page).'">&lt;&lt; ';
133
			}
134
			$pl_append = '</a>';
135
			$previous_link = $pl_prepend.$TEXT['PREVIOUS'].$pl_append;
136
			$previous_page_link = $pl_prepend.$TEXT['PREVIOUS_PAGE'].$pl_append;
137
		} else {
138
			$previous_link = '';
139
			$previous_page_link = '';
140
		}
141
		if($position + $setting_posts_per_page >= $total_num) {
142
			$next_link = '';
143
			$next_page_link = '';
144
		} else {
145
			if(isset($_GET['g']) AND is_numeric($_GET['g'])) {
146
				$nl_prepend = '<a href="?p='.($position+$setting_posts_per_page).'&amp;g='.$_GET['g'].'"> ';
147
			} else {
148
				$nl_prepend = '<a href="?p='.($position+$setting_posts_per_page).'"> ';
149
			}
150
			$nl_append = ' &gt;&gt;</a>';
151
			$next_link = $nl_prepend.$TEXT['NEXT'].$nl_append;
152
			$next_page_link = $nl_prepend.$TEXT['NEXT_PAGE'].$nl_append;
153
		}
154
		if($position+$setting_posts_per_page > $total_num) {
155
			$num_of = $position+$num_posts;
156
		} else {
157
			$num_of = $position+$setting_posts_per_page;
158
		}
159

    
160
		$out_of = ($position+1).'-'.$num_of.' '.strtolower($TEXT['OUT_OF']).' '.$total_num;
161
		$of = ($position+1).'-'.$num_of.' '.strtolower($TEXT['OF']).' '.$total_num;
162
		$display_previous_next_links = '';
163
	} else {
164
		$display_previous_next_links = 'none';
165
	}
166

    
167
	if ($num_posts === 0) {
168
		$setting_header = '';
169
		$setting_post_loop = '';
170
		$setting_footer = '';
171
		$setting_posts_per_page = '';
172
	}
173

    
174
	// Print header
175
	if($display_previous_next_links == 'none') {
176
		print  str_replace( array('[NEXT_PAGE_LINK]','[NEXT_LINK]','[PREVIOUS_PAGE_LINK]','[PREVIOUS_LINK]','[OUT_OF]','[OF]','[DISPLAY_PREVIOUS_NEXT_LINKS]'),
177
		                    array('','','','','','', $display_previous_next_links), $setting_header);
178
	} else {
179
		print str_replace(  array('[NEXT_PAGE_LINK]','[NEXT_LINK]','[PREVIOUS_PAGE_LINK]','[PREVIOUS_LINK]','[OUT_OF]','[OF]','[DISPLAY_PREVIOUS_NEXT_LINKS]'),
180
		                    array($next_page_link, $next_link, $previous_page_link, $previous_link, $out_of, $of, $display_previous_next_links), $setting_header);
181
	}
182
	if($num_posts > 0)
183
	{
184
		if($query_extra != '')
185
		{
186
			?>
187
			<div class="selected-group-title">
188
				<?php print '<a href="'.htmlspecialchars(strip_tags($_SERVER['SCRIPT_NAME'])).'">'.PAGE_TITLE.'</a> &gt;&gt; '.$groups[$_GET['g']]['title']; ?>
189
			</div>
190
			<?php
191
		}
192
		while( false != ($post = $query_posts->fetchRow(MYSQL_ASSOC)) )
193
		{
194
			if(isset($groups[$post['group_id']]['active']) AND $groups[$post['group_id']]['active'] != false)
195
			{ // Make sure parent group is active
196
				$uid = $post['posted_by']; // User who last modified the post
197
				// Workout date and time of last modified post
198
				if ($post['published_when'] === '0'){ $post['published_when'] = time();}
199
				if ($post['published_when'] > $post['posted_when']) {
200
					$post_date = date(DATE_FORMAT, $post['published_when']+TIMEZONE);
201
					$post_time = date(TIME_FORMAT, $post['published_when']+TIMEZONE);
202
				} else {
203
					$post_date = date(DATE_FORMAT, $post['posted_when']+TIMEZONE);
204
					$post_time = date(TIME_FORMAT, $post['posted_when']+TIMEZONE);
205
				}
206

    
207
				$publ_date = date(DATE_FORMAT,$post['published_when']+TIMEZONE);
208
				$publ_time = date(TIME_FORMAT,$post['published_when']+TIMEZONE);
209

    
210
// Work-out the post link
211
				$post_link = page_link($post['link']);
212
				$post_link_path = str_replace(WB_URL, WB_PATH,$post_link);
213
				$create_date = date(DATE_FORMAT, $post['created_when']+TIMEZONE);
214
				$create_time = date(TIME_FORMAT, $post['created_when']+TIMEZONE);
215

    
216
				if(isset($_GET['p']) AND $position > 0) {
217
					$post_link .= '?p='.$position;
218
				}
219
				if(isset($_GET['g']) AND is_numeric($_GET['g'])) {
220
					if(isset($_GET['p']) AND $position > 0) { $post_link .= '&amp;'; } else { $post_link .= '?'; } {
221
					$post_link .= 'g='.$_GET['g'];
222
					}
223
				}
224
				// Get group id, title, and image
225
				$group_id = $post['group_id'];
226
				$group_title = $groups[$group_id]['title'];
227
				$group_image = $groups[$group_id]['image'];
228
				$display_image = ($group_image == '') ? "none" : "inherit";
229
				$display_group = ($group_id == 0) ? 'none' : 'inherit';
230

    
231
				if ($group_image != "") $group_image= "<img src='".$group_image."' alt='".$group_title."' />";
232

    
233
				// Replace [wblink--PAGE_ID--] with real link
234
				$short = ($post['content_short']);
235
				// Replace vars with values
236
				$post_long_len = strlen($post['content_long']);
237
				$vars = array('[POST_ID]', '[PAGE_TITLE]', '[GROUP_ID]', '[GROUP_TITLE]', '[GROUP_IMAGE]', '[DISPLAY_GROUP]', '[DISPLAY_IMAGE]', '[TITLE]', '[SHORT]', '[LINK]', '[MODI_DATE]', '[MODI_TIME]', '[CREATED_DATE]', '[CREATED_TIME]', '[PUBLISHED_DATE]', '[PUBLISHED_TIME]', '[USER_ID]', '[USERNAME]', '[DISPLAY_NAME]', '[EMAIL]', '[TEXT_READ_MORE]','[SHOW_READ_MORE]');
238
				if(isset($users[$uid]['username']) AND $users[$uid]['username'] != '')
239
				{
240
					if($post_long_len < 9) {
241
						$values = array($post['post_id'], PAGE_TITLE, $group_id, $group_title, $group_image, $display_group, $display_image, $post['title'], $short, '#" onclick="javascript:void(0);return false;" style="cursor:no-drop;', $post_date, $post_time, $create_date, $create_time, $publ_date, $publ_time, $uid, $users[$uid]['username'], $users[$uid]['display_name'], $users[$uid]['email'], '', 'hidden');
242
					} else {
243
						$values = array($post['post_id'], PAGE_TITLE, $group_id, $group_title, $group_image, $display_group, $display_image, $post['title'], $short, $post_link, $post_date, $post_time, $create_date, $create_time, $publ_date, $publ_time, $uid, $users[$uid]['username'], $users[$uid]['display_name'], $users[$uid]['email'], $MOD_NEWS['TEXT_READ_MORE'], 'visible');
244
					}
245
				} else {
246
					if($post_long_len < 9) {
247
						$values = array($post['post_id'], PAGE_TITLE, $group_id, $group_title, $group_image, $display_group, $display_image, $post['title'], $short, '#" onclick="javascript:void(0);return false;" style="cursor:no-drop;', $post_date, $post_time, $create_date, $create_time, $publ_date, $publ_time, '', '', '', '', '','hidden');
248
					} else {
249
						$values = array($post['post_id'], PAGE_TITLE, $group_id, $group_title, $group_image, $display_group, $display_image, $post['title'], $short, $post_link, $post_date, $post_time, $create_date, $create_time, $publ_date, $publ_time, '', '', '', '', $MOD_NEWS['TEXT_READ_MORE'],'visible');
250
					}
251
				}
252
				print str_replace($vars, $values, $setting_post_loop);
253
			}
254
		}
255
	}
256
// Print footer
257
	if($display_previous_next_links == 'none') {
258
		print  str_replace(array('[NEXT_PAGE_LINK]','[NEXT_LINK]','[PREVIOUS_PAGE_LINK]','[PREVIOUS_LINK]','[OUT_OF]','[OF]','[DISPLAY_PREVIOUS_NEXT_LINKS]'), array('','','','','','', $display_previous_next_links), $setting_footer);
259
	} else {
260
		print str_replace(array('[NEXT_PAGE_LINK]','[NEXT_LINK]','[PREVIOUS_PAGE_LINK]','[PREVIOUS_LINK]','[OUT_OF]','[OF]','[DISPLAY_PREVIOUS_NEXT_LINKS]'), array($next_page_link, $next_link, $previous_page_link, $previous_link, $out_of, $of, $display_previous_next_links), $setting_footer);
261
	}
262

    
263
}
264
//elseif(defined('POST_ID') AND is_numeric(POST_ID))
265
elseif(isset($post_id) && is_numeric($post_id)){
266
// print '<h2>'.POST_ID.'/'.PAGE_ID.'/'.POST_SECTION.'</h2>';
267
//  if(defined('POST_SECTION') AND POST_SECTION == $section_id)
268
	if(isset($post_section) && ($post_section == $section_id)){
269
		// Get settings
270
		$setting_post_header = $setting_post_footer = $setting_comments_header
271
		                     = $setting_comments_loop = $setting_comments_footer = '';
272
		$sql  = 'SELECT `post_header`, `post_footer`, `comments_header`, `comments_loop`, `comments_footer` ';
273
		$sql .= 'FROM `'.TABLE_PREFIX.'mod_news_settings` ';
274
		$sql .= 'WHERE `section_id`='.(int)$section_id;
275
		if( ($resSettings = $database->query($sql)) ){
276
			if( ($recSettings = $resSettings->fetchRow()) ) {
277
				foreach($recSettings as $key=>$val){
278
					${'setting_'.$key} = $val;
279
				}
280
			}
281
		}
282
// Get page info
283
		$query_page = $database->query("SELECT link FROM ".TABLE_PREFIX."pages WHERE page_id = '".PAGE_ID."'");
284
		if($query_page->numRows() > 0) {
285
			$page = $query_page->fetchRow();
286
			$page_link = page_link($page['link']);
287
			if(isset($_GET['p']) AND $position > 0) {
288
				$page_link .= '?p='.$_GET['p'];
289
			}
290
			if(isset($_GET['g']) AND is_numeric($_GET['g'])) {
291
				if(isset($_GET['p']) AND $position > 0) { $page_link .= '&amp;'; } else { $page_link .= '?'; }
292
				$page_link .= 'g='.$_GET['g'];
293
			}
294
		} else {
295
			exit($MESSAGE['PAGES_NOT_FOUND']);
296
		}
297

    
298
// Get post info
299
		$t = time();
300
		$query_post = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_news_posts
301
			WHERE post_id = '".$post_id."' AND active = '1'
302
			AND (published_when = '0' OR published_when <= $t) AND (published_until = 0 OR published_until >= $t)");
303

    
304
		if($query_post->numRows() > 0)
305
		{
306
			$post = $query_post->fetchRow();
307
			if(isset($groups[$post['group_id']]['active']) AND $groups[$post['group_id']]['active'] != false)
308
			{ // Make sure parent group is active
309
				$uid = $post['posted_by']; // User who last modified the post
310
				// Workout date and time of last modified post
311
				if ($post['published_when'] === '0'){ $post['published_when'] = time();}
312
				if ($post['published_when'] > $post['posted_when']) {
313
					$post_date = date(DATE_FORMAT, $post['published_when']+TIMEZONE);
314
					$post_time = date(TIME_FORMAT, $post['published_when']+TIMEZONE);
315
				} else {
316
					$post_date = date(DATE_FORMAT, $post['posted_when']+TIMEZONE);
317
					$post_time = date(TIME_FORMAT, $post['posted_when']+TIMEZONE);
318
				}
319

    
320
				$publ_date = date(DATE_FORMAT,$post['published_when']+TIMEZONE);
321
				$publ_time = date(TIME_FORMAT,$post['published_when']+TIMEZONE);
322

    
323
				// Work-out the post link
324
				$post_link = page_link($post['link']);
325

    
326
				$post_link_path = str_replace(WB_URL, WB_PATH,$post_link);
327
				$create_date = date(DATE_FORMAT, $post['created_when']+TIMEZONE);
328
				$create_time = date(TIME_FORMAT, $post['created_when']+TIMEZONE);
329
// Get group id, title, and image
330
				$group_id = $post['group_id'];
331
				$group_title = $groups[$group_id]['title'];
332
				$group_image = $groups[$group_id]['image'];
333
				$display_image = ($group_image == '') ? "none" : "inherit";
334
				$display_group = ($group_id == 0) ? 'none' : 'inherit';
335

    
336
				if ($group_image != "") $group_image= "<img src='".$group_image."' alt='".$group_title."' />";
337

    
338
				$vars = array('[PAGE_TITLE]', '[GROUP_ID]', '[GROUP_TITLE]', '[GROUP_IMAGE]', '[DISPLAY_GROUP]', '[DISPLAY_IMAGE]', '[TITLE]', '[SHORT]', '[BACK]', '[TEXT_BACK]', '[TEXT_LAST_CHANGED]', '[MODI_DATE]', '[TEXT_AT]', '[MODI_TIME]', '[CREATED_DATE]', '[CREATED_TIME]', '[PUBLISHED_DATE]', '[PUBLISHED_TIME]', '[TEXT_POSTED_BY]', '[TEXT_ON]', '[USER_ID]', '[USERNAME]', '[DISPLAY_NAME]', '[EMAIL]');
339
				$post_short=$post['content_short'];
340
				if(isset($users[$uid]['username']) AND $users[$uid]['username'] != '') {
341
					$values = array(PAGE_TITLE, $group_id, $group_title, $group_image, $display_group, $display_image, $post['title'], $post_short, $page_link, $MOD_NEWS['TEXT_BACK'], $MOD_NEWS['TEXT_LAST_CHANGED'],$post_date, $MOD_NEWS['TEXT_AT'], $post_time, $create_date, $create_time, $publ_date, $publ_time, $MOD_NEWS['TEXT_POSTED_BY'], $MOD_NEWS['TEXT_ON'], $uid, $users[$uid]['username'], $users[$uid]['display_name'], $users[$uid]['email']);
342
				} else {
343
					$values = array(PAGE_TITLE, $group_id, $group_title, $group_image, $display_group, $display_image, $post['title'], $post_short, $page_link, $MOD_NEWS['TEXT_BACK'], $MOD_NEWS['TEXT_LAST_CHANGED'], $post_date, $MOD_NEWS['TEXT_AT'], $post_time, $create_date, $create_time, $publ_date, $publ_time, $MOD_NEWS['TEXT_POSTED_BY'], $MOD_NEWS['TEXT_ON'], '', '', '', '');
344
				}
345
				// $post_long = ($post['content_long']);
346
				$post_long = ($post['content_long'] != '') ? $post['content_long'] : $post['content_short'];
347
			}
348
		} else {
349
				$wb->print_error($MESSAGE['FRONTEND_SORRY_NO_ACTIVE_SECTIONS'], 'view.php', false);
350
		}
351

    
352
		// Print post header
353
		print str_replace($vars, $values, $setting_post_header);
354
		// Print long
355
		print $post_long;
356

    
357
		// Print post footer
358
		print str_replace($vars, $values, $setting_post_footer);
359

    
360
		// Show comments section if we have to
361
		if(($post['commenting'] == 'private' AND isset($wb) AND $wb->is_authenticated() == true) OR $post['commenting'] == 'public')
362
		{
363
			// Print comments header
364
			$vars = array('[ADD_COMMENT_URL]','[TEXT_COMMENTS]');
365
			// $pid = $admin->getIDKEY(POST_ID);
366
			$values = array(WB_URL.'/modules/news/comment.php?post_id='.$post_id.'&amp;section_id='.$section_id, $MOD_NEWS['TEXT_COMMENTS']);
367
			print str_replace($vars, $values, $setting_comments_header);
368

    
369
// Query for comments
370
			$query_comments = $database->query("SELECT title,comment,commented_when,commented_by FROM ".TABLE_PREFIX."mod_news_comments WHERE post_id = '".$post_id."' ORDER BY commented_when ASC");
371
			if($query_comments->numRows() > 0)
372
			{
373
				while( false != ($comment = $query_comments->fetchRow()) )
374
				{
375
					// Display Comments without slashes, but with new-line characters
376
					$comment['comment'] = nl2br($wb->strip_slashes($comment['comment']));
377
					$comment['title'] = $wb->strip_slashes($comment['title']);
378
					// Print comments loop
379
					$commented_date = date(DATE_FORMAT, $comment['commented_when']+TIMEZONE);
380
					$commented_time = date(TIME_FORMAT, $comment['commented_when']+TIMEZONE);
381
					$uid = $comment['commented_by'];
382
					$vars = array('[TITLE]','[COMMENT]','[TEXT_ON]','[DATE]','[TEXT_AT]','[TIME]','[TEXT_BY]','[USER_ID]','[USERNAME]','[DISPLAY_NAME]', '[EMAIL]');
383
					if(isset($users[$uid]['username']) AND $users[$uid]['username'] != '') {
384
						$values = array(($comment['title']), ($comment['comment']), $MOD_NEWS['TEXT_ON'], $commented_date, $MOD_NEWS['TEXT_AT'], $commented_time, $MOD_NEWS['TEXT_BY'], $uid, ($users[$uid]['username']), ($users[$uid]['display_name']), ($users[$uid]['email']));
385
					} else {
386
						$values = array(($comment['title']), ($comment['comment']), $MOD_NEWS['TEXT_ON'], $commented_date, $MOD_NEWS['TEXT_AT'], $commented_time, $MOD_NEWS['TEXT_BY'], '0', strtolower($TEXT['UNKNOWN']), $TEXT['UNKNOWN'], '');
387
					}
388
					print str_replace($vars, $values, $setting_comments_loop);
389
				}
390
			} else {
391
				// Say no comments found
392
				$content = '';
393
				$vars = array('[TITLE]','[COMMENT]','[TEXT_ON]','[DATE]','[TEXT_AT]','[TIME]','[TEXT_BY]','[USER_ID]','[USERNAME]','[DISPLAY_NAME]', '[EMAIL]');
394
				$values = array( '', $MOD_NEWS['NO_COMMENT_FOUND'], '', '', '', '', '', '', '', '');
395
				print str_replace($vars, $values, $setting_comments_loop);
396
			}
397

    
398
			// Print comments footer
399
			$vars = array('[ADD_COMMENT_URL]','[TEXT_ADD_COMMENT]');
400
			$values = array(WB_URL.'/modules/news/comment.php?post_id='.$post_id.'&amp;section_id='.$section_id, $MOD_NEWS['TEXT_ADD_COMMENT']);
401
			print str_replace($vars, $values, $setting_comments_footer);
402

    
403
		}
404

    
405
	}
406

    
407
	if(ENABLED_ASP) {
408
		$_SESSION['comes_from_view'] = $post_id;
409
		$_SESSION['comes_from_view_time'] = time();
410
	}
411

    
412
}
(34-34/34)