Evet arkadaşlar çoğunuz temanızı değiştirmek istemediğiniz için 1.1 e geçemiyorsunuz sanırım.
Ama bazıları 1.1 de RC3 sürümlü temalar kullanıyorlar.Bu sakıncalıdır.Madem RC3 kullanıyosunuz neden 1.1 sürüm yükselttiniz.Şİmdi aşağıda adımları takip ederek temanız 1.1 sürüm uyumlu olacak;

Değişiklik yapılacak dosyalar(her ihtimale karşı işe yedek alarak başlayınız);

index.template.php
BoardIndex.template.php
MessageIndex.template.php
Display.template.php


İndex.Template.php
Bul
// Version: 1.1 RC3; index
Değiştir
// Version: 1.1; index
Bul
    $settings['theme_version'] = '1.1 RC3';
Değiştir
    $settings['theme_version'] = '1.1';
Bul
    <meta name="description" content="', $context['page_title'], '" />
Değiştir
<meta name="description" content="', $context['page_title'], '" />', empty($context['robot_no_index']) ? '' : '
    <meta name="robots" content="noindex" />', '
Bul
<script language="JavaScript" type="text/javascript" src="', $settings['default_theme_url'], '/script.js?rc3"></script>
Değiştir
<script language="JavaScript" type="text/javascript" src="', $settings['default_theme_url'], '/script.js?fin11"></script>
Bul
        var smf_scripturl = "', $scripturl, '";
Değiştir
var smf_scripturl = "', $scripturl, '";
        var smf_iso_case_folding = ', $context['server']['iso_case_folding'] ? 'true' : 'false', ';
        var smf_charset = "', $context['character_set'], '";
Bul
// The ?rc3 part of this link is just here to make sure browsers don't cache it wrongly.
     echo '
     <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/style.css?rc3" />
    <link rel="stylesheet" type="text/css" href="', $settings['default_theme_url'], '/print.css?rc3" media="print" />';
Değiştir
// The ?fin11 part of this link is just here to make sure browsers don't cache it wrongly.
     echo '
     <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/style.css?fin11" />
    <link rel="stylesheet" type="text/css" href="', $settings['default_theme_url'], '/print.css?fin11" media="print" />';
Bul
if (($context['browser']['is_ie'] && !$context['browser']['is_ie4']) || $context['browser']['is_mac_ie'] || $context['browser']['is_safari'])
Değiştir
if (($context['browser']['is_ie'] && !$context['browser']['is_ie4']) || $context['browser']['is_mac_ie'] || $context['browser']['is_safari'] || $context['browser']['is_firefox'])
Bul
else
            echo '
            var window_oldOnload = window.onload;
Değiştir
elseif ($context['browser']['is_firefox'])
            echo '
            window.addEventListener("load", smf_codeFix, false);
            function smf_codeFix()
            {
                var codeFix = document.getElementsByTagName ? document.getElementsByTagName("div") : document.all.tags("div");

                for (var i = 0; i < codeFix.length; i++)
                {
                    if (codeFix[i].className == "code" && (codeFix[i].scrollWidth > codeFix[i].clientWidth || codeFix[i].clientWidth == 0))
                        codeFix[i].style.overflow = "scroll";
                }
            }';
        else
            echo '
            var window_oldOnload = window.onload;
BoardIndex.template.php

Bul
// Version: 1.1 RC3; BoardIndex
Değiştir
// Version: 1.1; BoardIndex
Bul
        if ($settings['show_mark_read'])
Değiştir
        if ($settings['show_mark_read'] && !empty($context['categories']))
MessageIndex.template.php

Bul
// Version: 1.1 RC3; MessageIndex
Değiştir
// Version: 1.1; MessageIndex
Bul
<input type="submit" value="', $txt['quick_mod_go'], '" onclick="return document.topicForm.qaction.value != \'\' &amp;&amp; confirm(\'', $txt['quickmod_confirm'], '\');" />
Değiştir
                            <input type="submit" value="', $txt['quick_mod_go'], '" onclick="return document.forms.quickModForm.qaction.value != \'\' &amp;&amp; confirm(\'', $txt['quickmod_confirm'], '\');" />
Bul
document.onmousedown = mouse_down;

    var mouse_on_div;
    function mouse_down(e)
Değiştir
document.onclick = modify_topic_click;

    var mouse_on_div;
    function modify_topic_click()
Bul
    // For templating, shown when an inline edit is made.
Değiştir
function modify_topic_keypress(oEvent)
    {
        if (typeof(oEvent.keyCode) != "undefined" && oEvent.keyCode == 13)
        {
            modify_topic_save("', $context['session_id'], '");
            if (typeof(oEvent.preventDefault) == "undefined")
                oEvent.returnValue = false;
            else
                oEvent.preventDefault();
        }
    }

    // For templating, shown when an inline edit is made.
Bul
setInnerHTML(cur_subject_div, \'<input type="text" name="subject" value="\' + subject + \'" size="60" style="width: 99%;"  maxlength="80" /><input type="hidden" name="topic" value="\' + cur_topic_id + \'" /><input type="hidden" name="msg" value="\' + cur_msg_id.substr(4) + \'" />\');
Değiştir
setInnerHTML(cur_subject_div, \'<input type="text" name="subject" value="\' + subject + \'" size="60" style="width: 99%;"  maxlength="80" onkeypress="modify_topic_keypress(event)" /><input type="hidden" name="topic" value="\' + cur_topic_id + \'" /><input type="hidden" name="msg" value="\' + cur_msg_id.substr(4) + \'" />\');
Display.template.php

Bul
// Version: 1.1 RC3; Display
Değiştir
// Version: 1.1; Display
Bul
if ($context['show_spellchecking'])
            echo '
<form action="', $scripturl, '?action=spellcheck" method="post" accept-charset="', $context['character_set'], '" name="spell_form" id="spell_form" target="spellWindow"><input type="hidden" name="spellstring" value="" /></form>';
    }
Değiştir
}
        if ($context['show_spellchecking'])
            echo '
 <form action="', $scripturl, '?action=spellcheck" method="post" accept-charset="', $context['character_set'], '" name="spell_form" id="spell_form" target="spellWindow"><input type="hidden" name="spellstring" value="" /></form>';