mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +02:00
More changes ... switched away from prefetch for now ...
git-svn-id: file:///svn/phpbb/trunk@2849 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -8,7 +8,6 @@
|
||||
*
|
||||
* $Id$
|
||||
*
|
||||
*
|
||||
***************************************************************************/
|
||||
|
||||
/***************************************************************************
|
||||
@@ -1236,7 +1235,7 @@ function generate_smilies($mode, $page_id)
|
||||
$row = 0;
|
||||
$col = 0;
|
||||
|
||||
while ( list($smile_url, $data) = @each($rowset) )
|
||||
foreach( $rowset as $smile_url => $data )
|
||||
{
|
||||
if ( !$col )
|
||||
{
|
||||
@@ -1291,4 +1290,86 @@ function generate_smilies($mode, $page_id)
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
//
|
||||
//
|
||||
define('BBCODE_UID_LEN', 10);
|
||||
|
||||
//
|
||||
//
|
||||
//
|
||||
class parse_message
|
||||
{
|
||||
var $message;
|
||||
var $bbcode_tpl = null;
|
||||
|
||||
function parse_message($message, $html, $bbcode, $emoticons)
|
||||
{
|
||||
global $board_config;
|
||||
|
||||
$this->message = $message;
|
||||
unset($message);
|
||||
|
||||
$this->html($html);
|
||||
$this->bbcode($bbcode);
|
||||
$this->emoticons($emoticons);
|
||||
|
||||
return $this->message;
|
||||
}
|
||||
|
||||
function html($html)
|
||||
{
|
||||
global $board_config;
|
||||
|
||||
}
|
||||
|
||||
function bbcode($bbcode)
|
||||
{
|
||||
global $board_config;
|
||||
|
||||
}
|
||||
|
||||
function emoticons($emoticons)
|
||||
{
|
||||
global $board_config;
|
||||
|
||||
}
|
||||
|
||||
function attachments()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
class parse_poll
|
||||
{
|
||||
|
||||
function parse_poll()
|
||||
{
|
||||
global $board_config;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class parse_search
|
||||
{
|
||||
|
||||
function parse_search()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
function add()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
function delete()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user