Awesome thankscanidev wrote:Hi,
In the current version is not possible but, I think that i will add this feature in the next version
Regards
Awesome thankscanidev wrote:Hi,
In the current version is not possible but, I think that i will add this feature in the next version
Regards
Code: Select all
'U_NOTES' => ($user_notes_enabled && $auth->acl_getf_global('m_')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=notes&mode=user_notes&u=' . $user_id, true, $user->session_id) : '',
Code: Select all
'U_NOTES' => "$user_action&mode=wall",
Code: Select all
<td style="text-align:{S_CONTENT_FLOW_BEGIN}"><strong>{WARNINGS}</strong><!-- IF U_NOTES or U_WARN --> [ <!-- IF U_NOTES --><a href="{U_NOTES}">{L_VIEW_NOTES}</a><!-- ENDIF --> <!-- IF U_WARN --><!-- IF U_NOTES --> | <!-- ENDIF --><a href="{U_WARN}">{L_WARN_USER}</a><!-- ENDIF --> ]<!-- ENDIF --></td>
Code: Select all
Hi username1,
You are receiving this notice because you have been mentioned
by username2 in a comment or message.
Code: Select all
styles/prosilver/template/posting_topic_review.html
Find
<td valign="top" nowrap="nowrap"> <!-- IF topic_review_row.POSTER_QUOTE and topic_review_row.DECODED_MESSAGE --><a href="#" onclick="addquote({topic_review_row.POST_ID},'{topic_review_row.POSTER_QUOTE}'); return false;">{QUOTE_IMG}</a><!-- ENDIF --></td>
Add After
<!-- IF topic_review_row.MENTION_BUTTON --><td valign="top" nowrap="nowrap">{topic_review_row.MENTION_BUTTON}</td><!-- ENDIF -->
The Find specified by the MOD could not be found
Code: Select all
styles/prosilver/template/viewtopic_body.html
Find
<b class="postauthor"<!-- IF postrow.POST_AUTHOR_COLOUR --> style="color: {postrow.POST_AUTHOR_COLOUR}"<!-- ENDIF -->>{postrow.POST_AUTHOR}</b>
Replace With
<b class="postauthor"<!-- IF postrow.POST_AUTHOR_COLOUR --> style="color: {postrow.POST_AUTHOR_COLOUR}"<!-- ENDIF -->>{postrow.POST_AUTHOR}</b> {postrow.AUTHOR_FOLLOW_NAME}
The Find specified by the MOD could not be found
Find
<span class="postdetails">
Add Before
<!-- IF postrow.S_FOLLOW_BUTTON --><div style="text-align: center">{postrow.S_FOLLOW_BUTTON}</div><!-- ENDIF -->
The Find specified by the MOD could not be found
I will check this problem in future versions.admice wrote:Hi! Great MOD, but i experience a strange bug ((
I can mention well users with latin names, both lowercase or not (mice and Mice al good), also i can mention user with lowercase cyrillic names (мышь). But if user name starts with uppercase cyrillic (Мышь), @username isn't parsed as link ((
Code: Select all
$text = preg_replace('#((?:^|\s)+@)([^<>\s]+)#e', "'\$1' . strtolower('\$2')", $text);
Code: Select all
$text = preg_replace('#((?:^|\s)+@)([^<>\s]+)#e', "'\$1' . utf8_strtolower('\$2')", $text);
Code: Select all
$find = array(
'@' . strtolower($row['user_follow_name']),
'@[' . $row['username'] . ']',
'@[' . $row['username_clean'] . ']',
);
Code: Select all
$find = array(
'@' . utf8_strtolower($row['user_follow_name']),
'@[' . utf8_strtolower($row['username']) . ']',
'@[' . utf8_strtolower($row['username_clean']) . ']',
);