aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
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))