| 5 |
exit(); |
exit(); |
| 6 |
} |
} |
| 7 |
|
|
| 8 |
|
require_once "../lib/common.inc.php"; |
| 9 |
|
require_once "../lib/lml.inc.php"; |
| 10 |
|
require_once "../lib/str_process.inc.php"; |
| 11 |
require_once "../lib/astro.inc.php"; |
require_once "../lib/astro.inc.php"; |
| 12 |
?> |
?> |
| 13 |
<html> |
<html> |
| 295 |
<?php |
<?php |
| 296 |
foreach($result_set["data"]["current_action"] as $current_action) |
foreach($result_set["data"]["current_action"] as $current_action) |
| 297 |
{ |
{ |
| 298 |
switch($current_action) |
$current_action_name = (isset($BBS_user_actions[$current_action]) ? $BBS_user_actions[$current_action] : $current_action); |
|
{ |
|
|
case "MENU": |
|
|
$current_action_name = "菜单选择"; |
|
|
break; |
|
|
case "VIEW_FILE": |
|
|
$current_action_name = "查看文档"; |
|
|
break; |
|
|
case "VIEW_ARTICLE": |
|
|
$current_action_name = "阅读文章"; |
|
|
break; |
|
|
case "POST_ARTICLE": |
|
|
$current_action_name = "撰写文章"; |
|
|
break; |
|
|
case "EDIT_ARTICLE": |
|
|
$current_action_name = "修改文章"; |
|
|
break; |
|
|
case "REPLY_ARTICLE": |
|
|
$current_action_name = "回复文章"; |
|
|
break; |
|
|
case "BBS_NET": |
|
|
$current_action_name = "站点穿梭"; |
|
|
break; |
|
|
case "CHICKEN": |
|
|
$current_action_name = "电子小鸡"; |
|
|
break; |
|
|
case "": |
|
|
$current_action_name = "Web浏览"; |
|
|
break; |
|
|
default: |
|
|
$current_action_name = $current_action; |
|
|
} |
|
|
|
|
| 299 |
if ($current_action_name != "") |
if ($current_action_name != "") |
| 300 |
{ |
{ |
| 301 |
echo " <font color=green>[" . $current_action_name . "]</font>"; |
echo " <font color=green>[" . $current_action_name . "]</font>"; |
| 401 |
最近发表的主题: |
最近发表的主题: |
| 402 |
</td> |
</td> |
| 403 |
<td> |
<td> |
| 404 |
<a class="s7" href="search_article.php?uid=<?= $result_set["data"]["uid"]; ?>" target=_blank>查看>></a> |
<a class="s7" href="search_article_v2.php?uid=<?= $result_set["data"]["uid"]; ?>" target=_blank>查看>></a> |
| 405 |
</td> |
</td> |
| 406 |
</tr> |
</tr> |
| 407 |
<tr height="1" bgcolor="gray"> |
<tr height="1" bgcolor="gray"> |
| 420 |
<table border="0" cellspacing="0" cellpadding="0" width="80%"> |
<table border="0" cellspacing="0" cellpadding="0" width="80%"> |
| 421 |
<tr> |
<tr> |
| 422 |
<td style="color:gray; font-size:14px;"> |
<td style="color:gray; font-size:14px;"> |
| 423 |
<?= LML(htmlspecialchars($result_set["data"]["introduction"], ENT_HTML401, 'UTF-8'), true, true, 80); ?> |
<pre><?= split_line(LML($result_set["data"]["introduction"], 80), "", 0, 10); ?></pre> |
| 424 |
</td> |
</td> |
| 425 |
</tr> |
</tr> |
| 426 |
</table> |
</table> |