diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-08-13 16:34:17 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-08-13 16:34:17 +0000 |
commit | 38b8e4b801a13574af8efa961f3a453ae1e00d89 (patch) | |
tree | 77392e315766d125c5e144d0fd48a334f0dc45be /phpBB/includes/functions_posting.php | |
parent | a7cda845fa4337d7fe19d166fa1ce93acc941254 (diff) | |
download | forums-38b8e4b801a13574af8efa961f3a453ae1e00d89.tar forums-38b8e4b801a13574af8efa961f3a453ae1e00d89.tar.gz forums-38b8e4b801a13574af8efa961f3a453ae1e00d89.tar.bz2 forums-38b8e4b801a13574af8efa961f3a453ae1e00d89.tar.xz forums-38b8e4b801a13574af8efa961f3a453ae1e00d89.zip |
More changes ... switched away from prefetch for now ...
git-svn-id: file:///svn/phpbb/trunk@2849 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r-- | phpBB/includes/functions_posting.php | 85 |
1 files changed, 83 insertions, 2 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 1ab63294ad..efab3f4550 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -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() + { + + } + +} + ?>
\ No newline at end of file |