mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
Merge remote-tracking branch 'upstream/develop' into ticket/10665
* upstream/develop: [ticket/10733] Fixing test [ticket/10733] Removing static from data providers [ticket/10731] Fixed addquote() to work on opera browser. [ticket/10731] Fixed addquote() to work on opera browser. [Ticket/10675] Correct language string ATTACH_DISK_FULL [feature/event-dispatcher] Adding composer.phar to .gitignore for olympus [ticket/10705] Change WARNINGS_ZERO_TOTAL in subsilver2 [ticket/10705] Change WARNINGS_ZERO_TOTAL in prosilver [ticket/10705] Change WARNINGS_ZERO_TOTAL in en language [ticket/10675] Add disk full language string when posting attachments
This commit is contained in:
@@ -221,7 +221,7 @@ function addquote(post_id, username, l_wrote)
|
||||
|
||||
// Get text selection - not only the post content :(
|
||||
// IE9 must use the document.selection method but has the *.getSelection so we just force no IE
|
||||
if (window.getSelection && !is_ie)
|
||||
if (window.getSelection && !is_ie && !window.opera)
|
||||
{
|
||||
theSelection = window.getSelection().toString();
|
||||
}
|
||||
|
@@ -38,7 +38,7 @@
|
||||
</tr>
|
||||
<!-- BEGINELSE -->
|
||||
<tr>
|
||||
<td class="row1" colspan="4" align="center"><span class="gen">{L_WARNINGS_ZERO_TOTAL}</span></td>
|
||||
<td class="row1" colspan="4" align="center"><span class="gen">{L_NO_WARNINGS}</span></td>
|
||||
</tr>
|
||||
<!-- END highest -->
|
||||
</table>
|
||||
@@ -64,7 +64,7 @@
|
||||
</tr>
|
||||
<!-- BEGINELSE -->
|
||||
<tr>
|
||||
<td class="row1" colspan="4" align="center"><span class="gen">{L_WARNINGS_ZERO_TOTAL}</span></td>
|
||||
<td class="row1" colspan="4" align="center"><span class="gen">{L_NO_WARNINGS}</span></td>
|
||||
</tr>
|
||||
<!-- END latest -->
|
||||
</table>
|
||||
|
@@ -21,7 +21,7 @@
|
||||
</tr>
|
||||
<!-- BEGINELSE -->
|
||||
<tr>
|
||||
<td class="row1" colspan="4" align="center"><span class="gen">{L_WARNINGS_ZERO_TOTAL}</span></td>
|
||||
<td class="row1" colspan="4" align="center"><span class="gen">{L_NO_WARNINGS}</span></td>
|
||||
</tr>
|
||||
<!-- END user -->
|
||||
<tr align="center">
|
||||
|
Reference in New Issue
Block a user