move all message display sub-functions from boot.php into conversation.php
This commit is contained in:
parent
38014e9b4d
commit
5654ce926c
9 changed files with 2277 additions and 2166 deletions
|
@ -3,6 +3,11 @@
|
|||
|
||||
function display_content(&$a) {
|
||||
|
||||
require_once("include/bbcode.php");
|
||||
require_once('include/security.php');
|
||||
require_once('include/conversation.php');
|
||||
|
||||
|
||||
$o = '<div id="live-display"></div>' . "\r\n";
|
||||
|
||||
$nick = (($a->argc > 1) ? $a->argv[1] : '');
|
||||
|
@ -16,8 +21,6 @@ function display_content(&$a) {
|
|||
return;
|
||||
}
|
||||
|
||||
require_once("include/bbcode.php");
|
||||
require_once('include/security.php');
|
||||
|
||||
|
||||
$groups = array();
|
||||
|
@ -113,7 +116,6 @@ function display_content(&$a) {
|
|||
);
|
||||
}
|
||||
|
||||
require_once('include/conversation.php');
|
||||
|
||||
$o .= conversation($a,$r,'display', false);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue