aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2003-02-27 12:56:36 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2003-02-27 12:56:36 +0000
commitff93d24821bbc5510dcdb05d5be9c8d4edb6af57 (patch)
tree59e07656dd0d397cb8143b88f60f53d757086295 /phpBB/includes/functions_posting.php
parentd128d5d8002edab89482fe592f9740cbf6ed54c3 (diff)
downloadforums-ff93d24821bbc5510dcdb05d5be9c8d4edb6af57.tar
forums-ff93d24821bbc5510dcdb05d5be9c8d4edb6af57.tar.gz
forums-ff93d24821bbc5510dcdb05d5be9c8d4edb6af57.tar.bz2
forums-ff93d24821bbc5510dcdb05d5be9c8d4edb6af57.tar.xz
forums-ff93d24821bbc5510dcdb05d5be9c8d4edb6af57.zip
ok, i am commiting this one, before i am going to disable main posting parts for revamping... i will commit the changes when posting works again then.
git-svn-id: file:///svn/phpbb/trunk@3563 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index f9e59efefb..8ae9af43f9 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -53,7 +53,8 @@ class parse_message
// Smiley check
if (intval($config['max_post_smilies']) && $smilies )
{
- $sql = "SELECT code FROM " . SMILIES_TABLE;
+ $sql = "SELECT code
+ FROM " . SMILIES_TABLE;
$result = $db->sql_query($sql);
$match = 0;
@@ -154,7 +155,8 @@ class parse_message
{
global $db, $user;
- $sql = "SELECT * FROM " . SMILIES_TABLE;
+ $sql = "SELECT *
+ FROM " . SMILIES_TABLE;
$result = $db->sql_query($sql);
if ($row = $db->sql_fetchrow($result))