space_wall.php
1.21 KB
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
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: space_wall.php 29522 2012-04-17 09:39:32Z chenmengshu $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
$perpage = 20;
$perpage = mob_perpage($perpage);
$page = empty($_GET['page'])?1:intval($_GET['page']);
if($page<1) $page=1;
$start = ($page-1)*$perpage;
ckstart($start, $perpage);
$theurl = "home.php?mod=space&uid=$space[uid]&do=$do";
$diymode = 1;
$cid = empty($_GET['cid'])?0:intval($_GET['cid']);
$list = array();
$count = C::t('home_comment')->count_by_id_idtype($space['uid'], 'uid', $cid);
if($count) {
$query = C::t('home_comment')->fetch_all_by_id_idtype($space['uid'], 'uid', $start, $perpage, $cid, 'DESC');
foreach($query as $value) {
$list[] = $value;
}
}
$multi = multi($count, $perpage, $page, $theurl);
$navtitle = lang('space', 'sb_wall', array('who' => $space['username']));
$metakeywords = lang('space', 'sb_wall', array('who' => $space['username']));
$metadescription = lang('space', 'sb_wall', array('who' => $space['username']));
dsetcookie('home_diymode', 1);
include_once template("home/space_wall");
?>