yaptığım işlemlerin sonunda herhangibir yerden aktif etmem mi gerekiyor. anlamadım
Kod: Tümünü seç
##############################################################
## MOD Title: Advanced Quick Reply
## MOD Author: Z3u5 < brunovier@suportephpbb.org > http://www.suportephpbb.org
## MOD Description:
## Add quick reply box in the end of viewtopic with some options how:
## Attach sing
## Quote Selected
## Notify reply
## Enable/Disable quick reply box
## Enable/Disable colorize nicks
## Enable/Disable quote the last message
##
## http://www.suportephpbb.org
##
## MOD Version: 0.3.1
##
## Installation Level: Easy
## Installation Time: 5 Minutes
## Files To Edit:
## viewtopic.php
## styles/prosiver/template/viewtopic_body.html
## styles/prosiver/template/editor.js
##
## Included Files:
## root/*.*
##
##############################################################
## Author Notes:
##
## You can check updates for this mod in www.suportephpbb.org.
## This MOD has tested in phpBB RC7
##
##############################################################
## MOD History:
##
##
## 2007-10-20 - Version 0.3.1
## - Fixed imcompatibilites with phpBB3 RC7
##
## 2007-08-03 - Version 0.3.0
## - Fixed theme bugs
##
## 2007-06-05 - Version 0.2.0
## - Fixed focus textarea
## - Fixed Subject in quick reply
## - Added option to enable bbcode buttons
##
## 2007-06-05 - Version 0.1.5
## - Fixed quote last message smilie
##
## 2007-06-02 - Version 0.1.4
## - Fixed javascript error for Anonymous User
##
## 2007-06-02 - Version 0.1.3
## - Added Subsilver2 template
##
## 2007-05-29 - Version 0.1.2
## - Fixed javascript error
## - Fixed incompatibility with Firefox
##
## 2007-05-29 - Version 0.1.1
## - Add Optoin of colorize
##
## 2007-05-28 - Version 0.1.0
## - Initial Release
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ COPY ]------------------------------------------
#
copy root/*.* to phpBB3 root/*.*
#
#-----[ OPEN ]------------------------------------------
#
viewtopic.php
#
#-----[ FIND ]------------------------------------------
#
// Output the posts
$first_unread = $post_unread = false;
#
#-----[ BEFORE, ADD ]------------------------------------------
#
//-- mod : Advanced Quick Reply ---------------------------------------------------------------------
$last_post = end($rowset);
//-- fin mod : Advanced Quick Reply -----------------------------------------------------------------
#
#-----[ FIND ]------------------------------------------
#
page_footer();
#
#-----[ BEFORE, ADD ]------------------------------------------
#
//-- mod : Advanced Quick Reply ---------------------------------------------------------------------
include $phpbb_root_path . 'includes/quickreply.' . $phpEx;
$QuickReply = new QuickReply($topic_id, $forum_id, $topic_data, $last_post);
//-- fin mod : Advanced Quick Reply -----------------------------------------------------------------
#
#-----[ OPEN ]------------------------------------------
#
styles/prosiver/template/editor.js
#
#-----[ FIND ]------------------------------------------
#
textarea.focus();
baseHeight = doc.selection.createRange().duplicate().boundingHeight;
#
#-----[ REPLACE WITH ]------------------------------------------
#
//Removed by Quick Reply
//textarea.focus();
baseHeight = doc.selection.createRange().duplicate().boundingHeight;
#
#-----[ OPEN ]------------------------------------------
#
styles/prosiver/template/viewtopic_body.html
#
#-----[ FIND ]------------------------------------------
#
<!-- IF not postrow.U_POST_AUTHOR --><strong>{postrow.POST_AUTHOR_FULL}</strong><!-- ELSE -->{postrow.POST_AUTHOR_FULL}<!-- ENDIF -->
#
#-----[ REPLACE WITH ]------------------------------------------
#
<!-- IF S_QR_ACTIVE -->
<!-- IF S_QR_COLOR_NICK -->
<!-- IF postrow.POST_AUTHOR_COLOUR -->
<a href="#" onclick="insert_text('[b][color={postrow.POST_AUTHOR_COLOUR}]{postrow.POST_AUTHOR}[/color][/b], ', true, false); return false;"><span style="color: {postrow.POST_AUTHOR_COLOUR};" class="username-coloured">{postrow.POST_AUTHOR}</span></a>
<!-- ELSE -->
<a href="#" onclick="insert_text('[b]{postrow.POST_AUTHOR}[/b], ', true, false); return false;"><span style="color: {postrow.POST_AUTHOR_COLOUR};" class="username-coloured">{postrow.POST_AUTHOR}</span></a>
<!-- ENDIF -->
<!-- ELSE -->
<a href="#" onclick="insert_text('[b]{postrow.POST_AUTHOR}[/b], ', true, false); return false;"><span style="color: {postrow.POST_AUTHOR_COLOUR};" class="username-coloured">{postrow.POST_AUTHOR}</span></a>
<!-- ENDIF -->
<!-- ELSE -->
{postrow.POST_AUTHOR_FULL}
<!-- ENDIF -->
#
#-----[ FIND ]------------------------------------------
#
<!-- INCLUDE jumpbox.html -->
#
#-----[ BEFORE, ADD ]------------------------------------------
#
<!-- INCLUDE quickreply_body.html -->
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM