eXtreme Styles mod da includes/template.php dosyası ana includes/template.php dosyasından çok farklı işin kötü yanı phpbb forumu portal içine almak içinde includes/template.php dosyasını editlemek gerekiyor.
eXtreme Styles includes/template.php içinde mkportal ın istediği kodun nasıl ekleneceğini buldum;
Kod: Tümünü seç
-----[ AÇ ]------------------------------------------
#
eXtreme Styles includes/template.php
#
#-----[BUL ]------------------------------------------
#
if (empty($this->files_cache[$handle]) || $force_recompile)
{
#
#-----[ SONRASINA EKLE ]------------------------------------------
#
// modificato da mkportal
global $ForumOut, $Checkmkout;
if ($handle == "smiliesbody" || $handle == "reviewbody") {
$Checkmkout = 1;
}
$MK_PATH = "./";
if (defined('IN_ADMIN')) {
$MK_PATH = "../";
}
require $MK_PATH."../mkportal/conf_mk.php";
if ( !defined('IN_ADMIN') && $FORUM_VIEW == 1) {
ob_start();
$this->execute('', $this->compiled_code[$handle], $handle);
$ForumOut .= ob_get_contents();
ob_end_clean();
} else {
$this->execute('', $this->compiled_code[$handle], $handle);
}
// fine modificato
}
else
{
// modificato da mkportal
#
[ resmi görüntülemek için tıklayın ]
Ama orjinal includes/template.php attığım zaman sorun çözülüyor ama bu sefer eXtreme Styles'ın destklediği modları kullanamayacağım.
