aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/includes/bbcode.php96
-rw-r--r--phpBB/language/lang_english/lang_main.php3
-rw-r--r--phpBB/posting.php5
-rwxr-xr-xphpBB/templates/Default/bbcode.tpl13
-rwxr-xr-xphpBB/templates/PSO/bbcode.tpl8
-rwxr-xr-xphpBB/templates/subSilver/bbcode.tpl12
6 files changed, 111 insertions, 26 deletions
diff --git a/phpBB/includes/bbcode.php b/phpBB/includes/bbcode.php
index e93158eaac..f86167deff 100644
--- a/phpBB/includes/bbcode.php
+++ b/phpBB/includes/bbcode.php
@@ -81,6 +81,10 @@ function prepare_bbcode_template($bbcode_tpl)
$bbcode_tpl['quote_open'] = str_replace('{L_QUOTE}', $lang['Quote'], $bbcode_tpl['quote_open']);
+ $bbcode_tpl['quote_username_open'] = str_replace('{L_QUOTE}', $lang['Quote'], $bbcode_tpl['quote_username_open']);
+ $bbcode_tpl['quote_username_open'] = str_replace('{L_WROTE}', $lang['wrote'], $bbcode_tpl['quote_username_open']);
+ $bbcode_tpl['quote_username_open'] = str_replace('{USERNAME}', '\\1', $bbcode_tpl['quote_username_open']);
+
$bbcode_tpl['code_open'] = str_replace('{L_CODE}', $lang['Code'], $bbcode_tpl['code_open']);
$bbcode_tpl['img'] = str_replace('{URL}', '\\1', $bbcode_tpl['img']);
@@ -162,6 +166,8 @@ function bbencode_second_pass($text, $uid)
// [QUOTE] and [/QUOTE] for posting replies with quote, or just for quoting stuff.
$text = str_replace("[quote:$uid]", $bbcode_tpl['quote_open'], $text);
$text = str_replace("[/quote:$uid]", $bbcode_tpl['quote_close'], $text);
+
+ $text = preg_replace("/\[quote:$uid=(.*?)\]/si", $bbcode_tpl['quote_username_open'], $text);
// [b] and [/b] for bolding text.
$text = str_replace("[b:$uid]", $bbcode_tpl['b_open'], $text);
@@ -233,6 +239,8 @@ function bbencode_first_pass($text, $uid)
// [QUOTE] and [/QUOTE] for posting replies with quote, or just for quoting stuff.
$text = bbencode_first_pass_pda($text, $uid, '[quote]', '[/quote]', '', false, '');
+
+ $text = bbencode_first_pass_pda($text, $uid, '/\[quote=(.*?)\]/is', '[/quote]', '', false, '', "[quote:$uid=\\1]");
// [list] and [list=x] for (un)ordered lists.
$open_tag = array();
@@ -298,10 +306,9 @@ function bbencode_first_pass($text, $uid)
* NOTES: - this function assumes the first character of $text is a space.
* - every opening tag and closing tag must be of the [...] format.
*/
-function bbencode_first_pass_pda($text, $uid, $open_tag, $close_tag, $close_tag_new, $mark_lowest_level, $func)
+function bbencode_first_pass_pda($text, $uid, $open_tag, $close_tag, $close_tag_new, $mark_lowest_level, $func, $open_regexp_replace = false)
{
$open_tag_count = 0;
- $open_tag_length = array();
if (!$close_tag_new || ($close_tag_new == ''))
{
@@ -323,12 +330,7 @@ function bbencode_first_pass_pda($text, $uid, $open_tag, $close_tag, $close_tag_
// No opening tags to match, so return.
return $text;
}
-
- for ($i = 0; $i < count($open_tag); $i++)
- {
- ++$open_tag_count;
- $open_tag_length[$i] = strlen($open_tag[$i]);
- }
+ $open_tag_count = count($open_tag);
}
else
{
@@ -336,10 +338,27 @@ function bbencode_first_pass_pda($text, $uid, $open_tag, $close_tag, $close_tag_
$open_tag_temp = $open_tag;
$open_tag = array();
$open_tag[0] = $open_tag_temp;
- $open_tag_length[0] = strlen($open_tag[0]);
$open_tag_count = 1;
}
-
+
+ $open_is_regexp = false;
+
+ if ($open_regexp_replace)
+ {
+ $open_is_regexp = true;
+ if (!is_array($open_regexp_replace))
+ {
+ $open_regexp_temp = $open_regexp_replace;
+ $open_regexp_replace = array();
+ $open_regexp_replace[0] = $open_regexp_temp;
+ }
+ }
+
+ if ($mark_lowest_level && $open_is_regexp)
+ {
+ message_die(GENERAL_ERROR, "Unsupported operation for bbcode_first_pass_pda().");
+ }
+
// Start at the 2nd char of the string, looking for opening tags.
$curr_pos = 1;
@@ -353,23 +372,44 @@ function bbencode_first_pass_pda($text, $uid, $open_tag, $close_tag, $close_tag_
// We found a [. It starts at $curr_pos.
// check if it's a starting or ending tag.
$found_start = false;
- $which_start_tag = -1;
+ $which_start_tag = "";
+ $start_tag_index = -1;
for ($i = 0; $i < $open_tag_count; $i++)
{
- $possible_start = substr($text, $curr_pos, $open_tag_length[$i]);
- if (0 == strcasecmp($open_tag[$i], $possible_start))
+ // Grab everything until the first "]"...
+ $possible_start = substr($text, $curr_pos, strpos($text, "]", $curr_pos + 1) - $curr_pos + 1);
+
+ // Now compare, either using regexp or not.
+ if ($open_is_regexp)
+ {
+ $match_result = array();
+ // PREG regexp comparison.
+ if (preg_match($open_tag[$i], $possible_start, $match_result))
+ {
+ $found_start = true;
+ $which_start_tag = $match_result[0];
+ $start_tag_index = $i;
+ break;
+ }
+ }
+ else
{
- $found_start = true;
- $which_start_tag = $i;
- break;
+ // straightforward string comparison.
+ if (0 == strcasecmp($open_tag[$i], $possible_start))
+ {
+ $found_start = true;
+ $which_start_tag = $open_tag[$i];
+ $start_tag_index = $i;
+ break;
+ }
}
}
if ($found_start)
{
// We have an opening tag.
- // Push its position and length on to the stack, and then keep going to the right.
- $match = array("pos" => $curr_pos, "tag" => $which_start_tag);
+ // Push its position, the text we matched, and its index in the open_tag array on to the stack, and then keep going to the right.
+ $match = array("pos" => $curr_pos, "tag" => $which_start_tag, "index" => $start_tag_index);
bbcode_array_push($stack, $match);
++$curr_pos;
}
@@ -388,9 +428,14 @@ function bbencode_first_pass_pda($text, $uid, $open_tag, $close_tag, $close_tag_
// We need to do 2 replacements now.
$match = bbcode_array_pop($stack);
$start_index = $match['pos'];
- $which_start_tag = $match['tag'];
- $start_length = $open_tag_length[$which_start_tag];
- $start_tag = $open_tag[$which_start_tag];
+ $start_tag = $match['tag'];
+ $start_length = strlen($start_tag);
+ $start_tag_index = $match['index'];
+
+ if ($open_is_regexp)
+ {
+ $start_tag = preg_replace($open_tag[$start_tag_index], $open_regexp_replace[$start_tag_index], $start_tag);
+ }
// everything before the opening tag.
$before_start_tag = substr($text, 0, $start_index);
@@ -415,7 +460,14 @@ function bbencode_first_pass_pda($text, $uid, $open_tag, $close_tag, $close_tag_
}
else
{
- $text = $before_start_tag . substr($start_tag, 0, $start_length - 1) . ":$uid]";
+ if ($open_is_regexp)
+ {
+ $text = $before_start_tag . $start_tag;
+ }
+ else
+ {
+ $text = $before_start_tag . substr($start_tag, 0, $start_length - 1) . ":$uid]";
+ }
$text .= $between_tags . substr($close_tag_new, 0, $close_tag_new_length - 1) . ":$uid]";
}
diff --git a/phpBB/language/lang_english/lang_main.php b/phpBB/language/lang_english/lang_main.php
index 441e306794..0ea422e149 100644
--- a/phpBB/language/lang_english/lang_main.php
+++ b/phpBB/language/lang_english/lang_main.php
@@ -339,6 +339,8 @@ $lang['is_ON'] = " is ON"; // this goes after either BBCode or HTML
$lang['is_OFF'] = " is OFF"; // see above
$lang['wrote'] = "wrote"; // proceeds the username and is followed by the quoted text
+$lang['Quote'] = "Quote"; // comes before bbcode quote output.
+$lang['Code'] = "Code"; // comes before bbcode code output.
$lang['Stored'] = "Your message has been entered successfully";
$lang['Deleted'] = "Your message has been deleted successfully";
@@ -967,7 +969,6 @@ $lang['smiley_edit_success'] = "The smiley was successfully updated";
$lang['smile_add'] = "Add a new Smiley";
$lang['smile_desc'] = "From this page you can add, remove and edit the emoticons or smileys your users can use in their posts and private messages.";
$lang['smiley_config'] = "Smiley Configuration";
-$lang['Code'] = "Code";
$lang['Smile'] = "Smile";
$lang['Emotion'] = "Emotion";
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 84d4e2ca12..c7ff3301a2 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -1932,6 +1932,7 @@ else
$post_username = ( $post_user_id == ANONYMOUS && $postrow['post_username'] != "") ? $postrow['post_username'] : $postrow['username'];
$post_subject = $postrow['post_subject'];
$post_message = $postrow['post_text'];
+ $post_bbcode_uid = $postrow['bbcode_uid'];
if( $mode == "editpost" )
{
@@ -1944,7 +1945,7 @@ else
$user_sig = $userdata['user_sig'];
}
- $post_message = preg_replace("/\:[0-9a-z\:]*?\]/si", "]", $post_message);
+ $post_message = preg_replace("/\:$post_bbcode_uid(|\:[a-z])/si", "", $post_message);
$post_message = str_replace("<br />", "\n", $post_message);
$post_message = preg_replace($html_entities_match, $html_entities_replace, $post_message);
$post_message = preg_replace('#</textarea>#si', '&lt;/textarea&gt;', $post_message);
@@ -1959,7 +1960,7 @@ else
$msg_date = create_date($board_config['default_dateformat'], $postrow['post_time'], $board_config['board_timezone']);
- $post_message = $post_username . " " . $lang['wrote'] . ":\n\n[quote]\n" . $post_message . "\n[/quote]";
+ $post_message = "[quote=" . $post_username . "]\n" . $post_message . "\n[/quote]";
$mode = "reply";
}
diff --git a/phpBB/templates/Default/bbcode.tpl b/phpBB/templates/Default/bbcode.tpl
index 2cfdb4b0fe..62e10a1892 100755
--- a/phpBB/templates/Default/bbcode.tpl
+++ b/phpBB/templates/Default/bbcode.tpl
@@ -32,6 +32,19 @@
<font size="-1">
<blockquote>
<!-- END quote_open -->
+<!-- BEGIN quote_open -->
+<table border="0" align="center" width="85%">
+ <tr>
+ <td>
+ <font size="-1">{USERNAME} {L_WROTE}:</font>
+ <hr />
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <font size="-1">
+ <blockquote>
+<!-- END quote_open -->
<!-- BEGIN quote_close -->
</blockquote>
</font>
diff --git a/phpBB/templates/PSO/bbcode.tpl b/phpBB/templates/PSO/bbcode.tpl
index 73697e5a92..a835fce7ef 100755
--- a/phpBB/templates/PSO/bbcode.tpl
+++ b/phpBB/templates/PSO/bbcode.tpl
@@ -29,6 +29,14 @@
<tr>
<td><font size="-1"><blockquote>
<!-- END quote_open -->
+<!-- BEGIN quote_username_open -->
+<table width="85%" cellspacing="0" cellpadding="0" border="0" align="center">
+ <tr>
+ <td><font size="-1">{USERNAME} {L_WROTE}:</font><hr /></td>
+ </tr>
+ <tr>
+ <td><font size="-1"><blockquote>
+<!-- END quote_username_open -->
<!-- BEGIN quote_close -->
</blockquote></font></td>
</tr>
diff --git a/phpBB/templates/subSilver/bbcode.tpl b/phpBB/templates/subSilver/bbcode.tpl
index ef7c1653f0..37ec973e68 100755
--- a/phpBB/templates/subSilver/bbcode.tpl
+++ b/phpBB/templates/subSilver/bbcode.tpl
@@ -17,11 +17,21 @@
<li>
<!-- END listitem -->
+<!-- BEGIN quote_username_open -->
+</span>
+<table border="0" align="center" width="90%" cellpadding="3" cellspacing="1">
+<tr>
+ <td><span class="genmed"><b>{USERNAME} {L_WROTE}:</b></span></td>
+ </tr>
+ <tr>
+ <td class="quote">
+ <!-- END quote_username_open -->
+
<!-- BEGIN quote_open -->
</span>
<table border="0" align="center" width="90%" cellpadding="3" cellspacing="1">
<tr>
- <td><span class="genmed"><b>Quote:</b></span></td>
+ <td><span class="genmed"><b>{L_QUOTE}:</b></span></td>
</tr>
<tr>
<td class="quote">