|
From: Paul S. O. <ps...@us...> - 2002-07-14 14:37:50
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv12926/includes
Added Files:
functions_posting.php
Log Message:
Combine posting and searching functions ... not entirely convinced about this since searching is done without need of posting routines but hum ho for now
--- NEW FILE ---
<?php
/***************************************************************************
* functions_post.php
* -------------------
* begin : Saturday, Feb 13, 2001
* copyright : (C) 2001 The phpBB Group
* email : su...@ph...
*
* $Id: functions_posting.php,v 1.1 2002/07/14 14:37:47 psotfx Exp $
*
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
[...1331 lines suppressed...]
'U_MORE_SMILIES' => "posting.$phpEx$SID&mode=smilies")
);
}
$template->assign_vars(array(
'L_EMOTICONS' => $lang['Emoticons'],
'L_CLOSE_WINDOW' => $lang['Close_window'],
'S_SMILIES_COLSPAN' => $s_colspan)
);
}
if ( $mode == 'window' )
{
$template->display('smiliesbody');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
}
}
?>
|