حذف الأخطاء الموجودة فى القوالب

2 مشترك

اذهب الى الأسفل

حذف الأخطاء الموجودة فى القوالب Empty حذف الأخطاء الموجودة فى القوالب

مُساهمة من طرف M.CABO الإثنين 30 يناير 2012 - 17:15

بسم الله الرحمن الرحيم

انا اطل من خبير التومبلايت ان يجد اى خطأ فى جميع القوالب وتعديلها بدون أخطاء

لأنها مخربة عندى المنتدى

مثل

حذف الأخطاء الموجودة فى القوالب 3012_md_13279358611

القوالب سوف يتم تقسيمها على 3 ردود

اولا

قالب overall_header

الكود:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html  xmlns="http://www.w3.org/1999/xhtml"
dir="{S_CONTENT_DIRECTION}" id="min-width" lang="{L_LANG_HTML}"
xml:lang="{L_LANG_HTML}" {NAMESPACE_FB_LIKE} {NAMESPACE_FB}>
<head>
    <!-- BEGIN meta_emulate_ie7 -->
    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
    <!-- END meta_emulate_ie7 -->
    <title>{SITENAME_TITLE}{PAGE_TITLE}</title>
    <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING};" />
    <meta http-equiv="content-script-type" content="text/javascript" />
    <meta http-equiv="content-style-type" content="text/css" />
    {META_FAVICO}
    {META}
    {META_FB_LIKE}
    <meta name="title" content="{SITENAME_TITLE}{PAGE_TITLE}" />
    {T_HEAD_STYLESHEET}
    {CSS}
    <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}" />
    <link rel="search" type="application/opensearchdescription+xml"
href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml"
title="{SEARCH_FORUMS}" />
    <script src="{JQUERY_PATH}" type="text/javascript"></script>
    <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>
 
    <!-- BEGIN switch_fb_login -->
    <script src="http://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js" type="text/javascript"></script>
    <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
    <!-- END switch_fb_login -->
 
    <!-- BEGIN switch_ticker -->
    <link type="text/css" rel="stylesheet" href="{JS_DIR}jquery/ticker/ticker.css" />
    <script src="{JS_DIR}jquery/ticker/ticker.js" type="text/javascript"></script>
    <!-- END switch_ticker -->
 
    <!-- BEGIN switch_ticker_new -->
    <script src="{JS_DIR}jquery/jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
    <script type="text/javascript">//<![CDATA[
    /* Definir le sens de direction en fonction du panneau admin */
    var tickerDirParam = "{switch_ticker.DIRECTION}";
    var slid_vert = false;
    var auto_dir  = 'next';
    var h_perso = parseInt({switch_ticker.HEIGHT});
 
    switch( tickerDirParam )
    {
        case 'top' :
            slid_vert = true;
            break;
 
        case 'left':
            break;
 
        case 'bottom':
            slid_vert = true;
            auto_dir  = 'prev';
            break;
 
        case 'right':
            auto_dir  = 'prev';
            break;
 
        default:
            slid_vert = true;
    }
 
    $(document).ready(function() {
        var w_cont = $('#fa_ticker_container').width();
 
        if (w_cont > 0)
        {
            $('#fa_ticker_container').width(w_cont);
 
            /* Affichage de la liste */
            $('#fa_ticker_content').css('display','block');
 
            /* Calcul des dimensions du conteneur et des  l ments */
            var width_max  = $('ul#fa_ticker_content').width();
            var width_item = Math.floor(width_max / {switch_ticker.SIZE});
            var height_max = h_perso;
 
            /* Calcul de la hauteur maximale du contenur en fonction des  l ments et de la hauteur personnalis e dans l'admin */
            $('ul#fa_ticker_content li').each( function () {
                if ($(this).height() > height_max)
                {
                    height_max = $(this).height();
                }
            } );
 
            /* Redimensionnement des  l ments et des images trop larges */
            $('ul#fa_ticker_content li').width(width_item).height(height_max).find('img').each(function () {
                if ($(this).width() > width_item)
                {
                var ratio      = $(this).width() / width_item;
                var new_height = Math.round($(this).height() / ratio);
                $(this).height(new_height).width(width_item);
                }
            });
 
            /* Redimensionnement et centrage du conteneur en mode vertical */
            if (slid_vert)
            {
               
$('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
            }
 
            /* Initialisation du caroussel */
            $('#fa_ticker_content').jcarousel({
                  vertical: slid_vert,
                wrap: 'circular',
                auto: {switch_ticker.STOP_TIME},
                auto_direction: auto_dir,
                scroll: 1,
                size: {switch_ticker.SIZE},
                height_max: height_max,
                animation: {switch_ticker.SPEED}
            });
        }
        else
        {
            $('ul#fa_ticker_content li:not(:first)').css('display','none');
            $('ul#fa_ticker_content li:first').css('list-style','none').css('text-align','center');
        }
    });
    //]]>
    </script>
    <!-- END switch_ticker_new -->
 
    <script type="text/javascript">//<![CDATA[
    $(document).ready(function(){
        <!-- BEGIN switch_enable_pm_popup -->
            pm = window.ywzX('{U_PRIVATEMSGS_POPUP}', '_faprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
            pm.focus();
        <!-- END switch_enable_pm_popup -->
        <!-- BEGIN switch_report_popup -->
            report = window.ywzX('{switch_report_popup.U_REPORT_POPUP}',
 '_phpbbreport',
'HEIGHT={switch_report_popup.S_HEIGHT},resizable=yes,scrollbars=no,WIDTH={switch_report_popup.S_WIDTH}');
            report.focus();
        <!-- END switch_report_popup -->
        <!-- BEGIN switch_ticker -->
            ticker_start({switch_ticker.HEIGHT},
{switch_ticker.SPACING}, {switch_ticker.SPEED},
'{switch_ticker.DIRECTION}', {switch_ticker.STOP_TIME});
        <!-- END switch_ticker -->
    });
 
    <!-- BEGIN switch_login_popup -->
        var logInPopUpLeft, logInPopUpTop, logInPopUpWidth =
{LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT},
logInBackgroundResize = true, logInBackgroundClass = false;
    <!-- END switch_login_popup -->
 
    <!-- BEGIN switch_login_popup -->
    $(document).ready( function() {
        $(window).resize(function() {
            var windowWidth = document.documentElement.clientWidth;
            var popupWidth = $("#login_popup").width();
            var mypopup = $("#login_popup");
 
            $("#login_popup").css({
                "left": windowWidth/2 - popupWidth/2
              });
        });
    });
    <!-- END switch_login_popup -->
    //]]>
    </script>
    {GREETING_POPUP}
    <!-- BEGIN switch_ticker_new -->
    <style>
    .jcarousel-skin-tango .jcarousel-item {
        text-align:center;
        width: 10px;
    }
 
    .jcarousel-skin-tango .jcarousel-item-horizontal {
        margin-right: {switch_ticker.SPACING}px;
    }
 
    .jcarousel-skin-tango .jcarousel-item-vertical {
        margin-bottom: {switch_ticker.SPACING}px;
    }
    </style>
    <!-- END switch_ticker_new -->
 
    <!-- BEGIN google_analytics_code -->
    <script type="text/javascript">
    //<![CDATA[
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', '{G_ANALYTICS_ID}']);
      _gaq.push(['_trackPageview']);
 
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
      })();
    //]]>
    </script>
    <!-- END google_analytics_code -->
</head>
<body background="{T_BODY_BACKGROUND}" bgcolor="{T_BODY_BGCOLOR}"
text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}">
    <!-- BEGIN hitskin_preview -->
    <div id="hitskin_preview" style="display: block;">
        <h1><img
src="http://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" />
Hit<em>skin</em>.com</h1>
        <div class="content">
            <p>
                {hitskin_preview.L_THEME_SITE_PREVIEW}
                <br />
                <span>{hitskin_preview.U_INSTALL_THEME}<a
href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
            </p>
        </div>
    </div>
    <!-- END hitskin_preview -->
 
    <!-- BEGIN switch_login_popup -->
    <div id="login_popup">
        <table class="forumline" width="{LOGIN_POPUP_WIDTH}"
height="{LOGIN_POPUP_HEIGHT}" border="0" cellspacing="1"
cellpadding="0">
            <tr height="25">
                <td class="catLeft">
                    <span class="genmed module-title">{SITENAME}</span>
                </td>
            </tr>
            <tr height="{LOGIN_POPUP_MSG_HEIGHT}">
                <td class="row1" align="left" valign="top">
                    <div id="login_popup_buttons">
                        <form action="{S_LOGIN_ACTION}" method="get">
                            <input type="submit" class="mainoption" value="{L_LOGIN}" />
                            <input type="button" class="mainoption"
value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
                            <input id="login_popup_close" type="button" class="button" value="{L_DONT_DISPLAY_AGAIN}" />
                        </form>
                    </div>
                    <span class="genmed">{LOGIN_POPUP_MSG}</span>
                </td>
            </tr>
        </table>
    </div>
    <!-- END switch_login_popup -->
 
    <a name="top"></a>
    {JAVASCRIPT}</style><!-- logo -->
 
    <div align="center">
 
<table border="0" cellpadding="0" style="border-collapse: collapse"
width="100%" background="http://www.shy22.com/pngfile/gf238879.png">
 
<tr>
 
<td width="1%" align="right" background="http://www.shy22.com/pngfile/gf238879.png">
 
<div align="left">
 
<img border="0" src="http://www.shy22.com/giffile/vfp38879.gif" width="500" height="226"></td>
 
<td width="100%" background="http://www.shy22.com/pngfile/gf238879.png">
 
<div align="center">
 
<img border="0" src="http://www.shy22.com/pngfile/gf238879.png" width="79" height="226"></td>
 
<td width="3%" align="left" background="http://www.shy22.com/pngfile/gf238879.png">
 
<div align="right">
 
<img border="0" src="http://www.shy22.com/pngfile/g3v38879.png" width="500" height="226"></td>
 
</tr>
 
</table>
 
    </div>
 
<table align="center" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="100%">
 
<tr>
    </table>
    <p> </p>
    <table class="bodylinewidth" width="{T_BODY_TABLE_WIDTH}" cellspacing="0" cellpadding="10" border="0" align="center">
        <tr>
            <td class="bodyline">
                <table width="100%" cellspacing="0" cellpadding="0" border="0">
                    <tr>
                        <!-- BEGIN switch_logo_left -->
                        <td><a href="{U_INDEX}"><img
src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1"
/></a></td>
                        <!-- END switch_logo_left -->
                        <td align="center" width="100%" valign="middle">
                            <!-- BEGIN switch_logo_center -->
                            <a href="{U_INDEX}"><img
src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1"
/></a>
                            <br />
                            <!-- END switch_logo_center -->
                            <div class="maintitle">{MAIN_SITENAME}</div>
                            <br />
                            <span class="gen">{SITE_DESCRIPTION}<br />  </span>
                        </td>
                        <!-- BEGIN switch_logo_right -->
                        <td><a href="{U_INDEX}"><img
src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1"
/></a></td>
                        <!-- END switch_logo_right -->
                    </tr>
                </table>
 
                <table cellspacing="0" cellpadding="0" border="0" align="{MENU_POSITION}">
                    <tr>
                        <td align="{MENU_POSITION}"{MENU_NOWRAP}>{GENERATED_NAV_BAR}</td>
                    </tr>
                </table>
 
                <div style="clear: both;"></div>
 
                <!-- BEGIN switch_ticker_new -->
                <div id="fa_ticker_block" style="margin-top:4px;margin-bottom:4px;">
                    <table width="100%" border="0" cellspacing="0" cellpadding="0" class="forumline">
                        <tr>
                            <td {CLASS_TABLE_TYPE} align="left" class="row1">
                                <div id="fa_ticker_container">
                                    <ul id="fa_ticker_content"  class="jcarousel-skin-tango" style="display:none;">
                                        <!-- BEGIN ticker_row -->
                                        <li>{switch_ticker.ticker_row.ELEMENT}</li>
                                        <!-- END ticker_row -->
                                    </ul>
                                </div>
                            </td>
                        </tr>
                    </table>
                </div>
                <!-- END switch_ticker_new -->
 
                <!-- BEGIN switch_ticker -->
                <div id="fa_ticker_block" style="margin-top:4px;margin-bottom:4px;">
                    <table width="100%" border="0" cellspacing="0" cellpadding="0" class="forumline">
                        <tr>
                            <td {CLASS_TABLE_TYPE} align="left" class="row1">
                                <div id="fa_ticker_container">
                                    <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
                                        <div class="fa_ticker_content">
                                            <!-- BEGIN ticker_row -->
                                            <div>{switch_ticker.ticker_row.ELEMENT}</div>
                                            <!-- END ticker_row -->
                                        </div>
                                    </div>
                                </div>
                            </td>
                        </tr>
                    </table>
                </div>
                <!-- END switch_ticker -->
<center></center>
                <div id="page-body">
                    <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
                        <table cellpadding="0" cellspacing="0" width="100%" class="three-col">
                            <tbody>
                                <tr>
                                    <td valign="top" width="100%">
                              <div id="center">
                                <!-- BEGIN giefmod_index1 -->
                                {giefmod_index1.MODVAR}
                                    <!-- BEGIN saut -->
                                    <div style="height:{SPACE_ROW}px"></div>
                                    <!-- END saut -->
                                <!-- END giefmod_index1 -->
                              </div>
                          </td></tr><tr>
                                    <td valign="top" width="100%">
<!-- BEGIN html_validation -->
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                </div>
            </td>
        </tr>
    </table>
</body>
</html><a href="http://kingofpop.hooxs.com/">
<!-- END html_validation -->
</a><br><br>


قالب overall_footer_begin

الكود:
<!-- BEGIN html_validation -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<table>
    <tr>
        <td>
            <div>
                <div>
                    <table>
                        <tbody>
                            <tr>
                                <td>
<!-- END html_validation -->
                                </td>
                                <td valign="top" width="{C3SIZE}">
                                <div id="{ID_RIGHT}">
                                    <!-- BEGIN giefmod_index2 -->
                                    {giefmod_index2.MODVAR}
                                    <!-- BEGIN saut -->
                                    <div style="height: {SPACE_ROW}px"></div>
                                    <!-- END saut -->
                                    <!-- END giefmod_index2 -->
                                </div>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
   
 
 
 
 
 
 
 
            <!-- close div id=&quot;page-body&quot; -->
<div class="body_forums">
<div class="left_body">
<div class="left_top">
<div class="footer_top_b">
<div class="footer_top_l">
<div class="footer_top_r">
            <div id="page-footer">
<center>
                        <strong>{ADMIN_LINK}</strong>
</center>
<!-- BEGIN switch_facebook_login -->
<div id="fb-root0"></div>
<script type="text/javascript">
//<![CDATA[
FB.init({appId: '{switch_facebook_login.FACEBOOK_APP_ID}', status: true, cookie: true, xfbml: true, oauth: true});
//]]>
</script>
<!-- END switch_facebook_login -->
 
 
 
 
 
 
 
 
<!-- BEGIN switch_facebook_logout_TMP -->
 
 
 
 
 
 
 
 
 
 
 
 
<script type="text/javascript">
//<![CDATA[
FB.Event.subscribe('auth.logout', function(response) {
    if ($('a#logout'))
    {
        var lien_redir = $('a#logout').attr('href');
 
        if ($('a#logout').attr('href') && $('a#logout').attr('href') != '')
        {
            document.location.href = 'http://{switch_facebook_logout.SERVER_NAME}/' + lien_redir;
        }
    }
});
 
$(document).ready( function() {
    $('a#logout').click( function() {
        FB.logout();
    } );
});
//]]>
</script>
<!-- END switch_facebook_logout_TMP -->
 
<script type="text/javascript">
//<![CDATA[
    fa_endpage();
//]]>
</script>
 
 
</body>
</html>
 
 
 
 
 
 
 
 
</td></tr></tbody></table></td></tr></tbody></table>
 
 
<table width="100%" cellspacing="0" cellpadding="6" border="0" align="center">
<tbody>
<tr>
<td width="100%" align="left"> </td>
</tr>
</tbody>
</table>
 
<!-- BEGIN switch_facebook_login -->
<div id="fb-root"></div>
<script type="text/javascript">
//<![CDATA[
FB.init({appId: '{switch_facebook_login.FACEBOOK_APP_ID}', status: true, cookie: true, xfbml: true, oauth: true});
//]]>
</script>
<!-- END switch_facebook_login -->
 
<!-- BEGIN switch_facebook_logout_TMP -->
<script type="text/javascript">
//<![CDATA[
FB.Event.subscribe('auth.logout', function(response) {
    if ($('a#logout'))
    {
        var lien_redir = $('a#logout').attr('href');
 
        if ($('a#logout').attr('href') && $('a#logout').attr('href') != '')
        {
            document.location.href = 'http://{switch_facebook_logout.SERVER_NAME}/' + lien_redir;
        }
    }
});
 
$(document).ready( function() {
    $('a#logout').click( function() {
        FB.logout();
    } );
} );
//]]>
</script>
<!-- END switch_facebook_logout_TMP -->
 
<script type="text/javascript">
//<![CDATA[
    fa_endpage();
//]]>
</script>
</body>
</html></td></tr></table></td></tr></table><style
 type="text/css">.fooooter1 {border-collapse: collapse;}.fooooter2
{text-align: center;}.fooooter3 {vertical-align: bottom;}</style>
<p align="center"><span style="color: #CC0000"
class="gensmall">©</span><span style="font-weight:
bold;"><font color="#CC0000">Powered
</font><span style="color: #CC0000">by</span><font color="#CC0000"> </font>
<span style="color: #CC0000">Ahlamontada</span></span><font color="#CC0000"><br>
</font><span style="color: #CC0000">®</span><a
class="copyright" target="_blank"
href="http://www.ahlamontada.com/ar/phpbb/"><font
color="#CC0000">phpBB</font></a></p>
<table style="width: 100%" dir="rtl" cellspacing="0" cellpadding="0" class="fooooter1"><tr>
    <td width="163" background="http://i45.servimg.com/u/f45/14/05/10/51/117.png">
    <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000"
id="obj1"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
 border="0" width="595" height="270">
        <param name="movie" value="http://download.mrkzy.com/e/1911_md_13217137126.swf">
        <param name="quality" value="High">
        <embed
src="http://download.mrkzy.com/e/1911_md_13217137126.swf"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" name="obj1" width="595"
height="270" quality="High"></object>
    </td>
    <td class="fooooter2" background="http://i45.servimg.com/u/f45/14/05/10/51/216.png" valign="bottom">
     </td>
    <td width="210" background="http://i45.servimg.com/u/f45/14/05/10/51/216.png">
     </td></tr></table></html>
 
 
 
  <table style="font-weight: bold; color: Red; text-align: left;
margin-left: auto; margin-right: auto;" border="5" cellpadding="1"
cellspacing="1" width="85%">
<tr>
<td style="text-align: center;"><a
href="http://www.eshary.com/" class="postlink" target="_blank"
rel="nofollow">منتدى أشهار Eshary.com</a><span
name="KavHltTag"> <img
src="data:image/gif;base64,R0lGODlhEQAQAOYAAIaoKaLLIq7bOqDJIJC2K4WnKd3xq5/HHbDdPKnUL6rWMqTOKKfSLaPMJabQKqzYNK3ZN/7+/YepKZe7Ofj68pW7KZ3EJoywKqXPKoywJunw18bldo+zJZzEHomsKo2tN4irKpvCL4+uOKDII5rBLJe6OrXfSaLLMYuuKpi7O8flet3nw5/III2xKI2yKpzELLLId+rw2YuvKo6zLI60K4eqKbjQeN/qw5O4Ka/bPNTgtL/RjrPeRKrVMdbtnqfCX6jDX4irKZa5NtjmtZO5LYiqKo+zKbjNfpOzPs3en4mrKZ3FHoquKrXcSp7GL7HcQY6uOcjXnq3OVJa8K8Deb5C0Kc3phYyvKo6zK4yxKq/QWqLLJZO5LpW7K57HIaXITKPGSJ/ILJrCKMPXj5i5P7HTVLDaPo2xJ7rQfpG2LbndV6PKNY6yKNjuoomtKv///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAG8ALAAAAAARABAAAAfOgG+CbxFJEwSIiYgpg4Q2Xz4GkpMGbVolg2NgViYInp8IPBs0gjcTKjkCqqurT1hvFGRUZhAAAFwQabZFEBAub2hSTQ8PtkQhthInxFkaQmoK0bZXErZO0QoXQGU9Cd624CTe3jI/awzoDOAAU10vYehMMTMYDvbgOBUASkb2bm9HKiwYaKvKAjFBbA30AAuJhQYNALTY0sACG1sQQQhagWJEgI8gQwaoMWjHGRYDUqpU6UXCoAgwMnQ4QLPmgSUcRDSKEOVDgZ9Af0J5EwgAOw=="
 );width:12px;=""> </span></td>
<td style="text-align: center;"><a href="http://almajro7.7olm.org">منتديات نديم الحب</a></td>
<td style="text-align: center;"><a href="http://kingofpop.hooxs.com/contact">ضع اعلانك هنا</a></td>
<td style="text-align: center;"><a href="http://kingofpop.hooxs.com/contact">ضع اعلانك هنا</a></td>
</tr>
<tr>
<td style="text-align: center;"><a href="http://kingofpop.hooxs.com/contact">ضع اعلانك هنا</a></td>
<td style="text-align: center;"><a href="http://kingofpop.hooxs.com/contact">ضع اعلانك هنا</a></td>
<td style="text-align: center;"><a href="../contact">ضع اعلانك هنا</a></td>
<td style="text-align: center;"><a href="../contact">ضع اعلانك هنا</a></td>
</tr>
</table>
 
   
    <div style="margin:auto;text-align:center;width:100%"><!-- Feedage.com RSS Feed Tracking -->
<table align="center" border="0" cellpadding="1" cellspacing="1">
<tr align="left">
<td><a
href="http://www.feedage.com/feeds/17777612/%D9%85%D9%86%D8%AA%D8%AF%D9%8A%D8%A7%D8%AA-%D9%85%D8%A7%D9%8A%D9%83%D9%84-%D8%AC%D8%A7%D9%83%D8%B3%D9%88%D9%86-%D9%85%D9%84%D9%83-%D8%A7%D9%84%D8%A8%D9%88%D8%A8-%D9%84%D8%B4%D8%A8%D8%A7%D8%A8-%D8%A7%D9%84%D8%B9%D8%B1%D8%A8">
<img src="http://www.feedage.com/images/add2feedage.gif" alt="Preview
 on Feedage:
%D9%85%D9%86%D8%AA%D8%AF%D9%8A%D8%A7%D8%AA-%D9%85%D8%A7%D9%8A%D9%83%D9%84-%D8%AC%D8%A7%D9%83%D8%B3%D9%88%D9%86-%D9%85%D9%84%D9%83-%D8%A7%D9%84%D8%A8%D9%88%D8%A8-%D9%84%D8%B4%D8%A8%D8%A7%D8%A8-%D8%A7%D9%84%D8%B9%D8%B1%D8%A8"
 height="17" border="0" width="69"></a></td>
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=yahoo">
<img src="http://www.feedage.net/images/addtomyyahoo4.gif" alt="Add
to My Yahoo! منتديات مايكل جاكسون ( ملك البوب ) لشباب العرب" height="17"
 border="0" width="92"></a></td>
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=google">
<img src="http://www.feedage.net/images/addtogoogle.gif" alt="Add to
Google! منتديات مايكل جاكسون ( ملك البوب ) لشباب العرب" height="17"
border="0" width="92"></a></td>
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=aol">
<img src="http://www.feedage.net/images/myaol_cta1.gif" alt="Add to
AOL! منتديات مايكل جاكسون ( ملك البوب ) لشباب العرب" height="14"
border="0" width="63"></a></td>
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=msn">
<img src="http://www.feedage.net/images/rss_mymsn.gif" alt="Add to
MSN منتديات مايكل جاكسون ( ملك البوب ) لشباب العرب" height="14"
border="0" width="71"></a></td>
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=newsgator">
<img src="http://www.feedage.net/images/ngsub1.gif" alt="Subscribe in
 NewsGator Online منتديات مايكل جاكسون ( ملك البوب ) لشباب العرب"
height="17" border="0" width="92"></a></td>
</tr>
<tr align="left">
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=netvibes">
<img src="http://www.feedage.net/images/add2netvibes.gif" alt="Add to
 Netvibes منتديات مايكل جاكسون ( ملك البوب ) لشباب العرب" height="17"
border="0" width="91"></a></td>
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=pageflakes">
<img src="http://www.feedage.net/images/add2pageflakes.gif"
alt="Subscribe in Pakeflakes منتديات مايكل جاكسون ( ملك البوب ) لشباب
العرب" height="17" border="0" width="91"></a></td>
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=bloglines">
<img src="http://www.feedage.net/images/add2bloglines.gif"
alt="Subscribe in Bloglines منتديات مايكل جاكسون ( ملك البوب ) لشباب
العرب" height="15" border="0" width="80"></a></td>
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=alesti">
<img src="http://www.feedage.net/images/alesti-rss-reader.gif"
alt="Add to Alesti RSS Reader منتديات مايكل جاكسون ( ملك البوب ) لشباب
العرب" height="17" border="0" width="91"></a></td>
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=feedagegroups">
<img src="http://www.feedage.net/images/add2feedagegroups.gif"
alt="Add to Feedage.com Groups منتديات مايكل جاكسون ( ملك البوب ) لشباب
العرب" height="17" border="0" width="91"></a></td>
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=live">
<img src="http://www.feedage.net/images/add2live.gif" alt="Add to
Windows Live منتديات مايكل جاكسون ( ملك البوب ) لشباب العرب" height="15"
 border="0" width="73"></a></td>
</tr>
<tr align="left">
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=iping-it">
<img src="http://www.feedage.net/images/add2iPing-it.gif"
alt="iPing-it منتديات مايكل جاكسون ( ملك البوب ) لشباب العرب"
height="17" border="0" width="91"></a></td>
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=feedagealerts">
<img src="http://www.feedage.net/images/add2feedagealerts.gif"
alt="Add to Feedage RSS Alerts منتديات مايكل جاكسون ( ملك البوب ) لشباب
العرب" height="17" border="0" width="91"></a></td>
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=fwicki">
<img src="http://www.feedage.net/images/add2fwicki_clicklet.png"
alt="Add To Fwicki منتديات مايكل جاكسون ( ملك البوب ) لشباب العرب"
height="15" border="0" width="91"></a></td>
<td><a href="http://www.feedage.com/subscribe.php?fid=17777612&s=spokentoyou">
<img src="http://www.feedage.net/images/add2spoken_to_you.gif"
alt="Add to Spoken to You منتديات مايكل جاكسون ( ملك البوب ) لشباب
العرب" height="17" border="0" width="91"></a></td>
</tr></table>
<!-- Feedage.com RSS Feed Tracking -->
</div>
   
   
    <div style="text-align: center;"><a target="_blank"
href="http://feeds.feedburner.com/%7Er/kingofpop1/%7E6/1"><img
src="http://feeds.feedburner.com/kingofpop1.1.gif" alt="منتديات مايكل
جاكسون ( ملك البوب ) لشباب العرب"
style="border:0"></a></div>
     
 



قالب index_body

الكود:
{JAVASCRIPT}
<!-- BEGIN message_admin_index -->
<table class="forumline" width="90%" border="0" cellspacing="1" cellpadding="0">
    <!-- BEGIN message_admin_titre -->
    <tr>
        <td class="catHead" height="28"><span
class="cattitle">{message_admin_index.message_admin_titre.MES_TITRE}</span></td>
    </tr>
    <!-- END message_admin_titre -->
    <!-- BEGIN message_admin_txt -->
    <tr>
        <td class="row1" rowspan="3" align="center" valign="middle">
        <div class="gensmall">{message_admin_index.message_admin_txt.MES_TXT}</div>
        </td>
    </tr>
    <!-- END message_admin_txt -->
</table>
<!-- END message_admin_index -->
 
<!-- BEGIN switch_user_login_form_header -->
<form action="{S_LOGIN_ACTION}" method="post" name="form_login">
  <!-- BEGIN switch_fb_connect_no -->
  <table width="90%" border="0" cellspacing="0" cellpadding="0" class="user_login_form forumline">
      <tr>
        <td class="row1" align="center">
            <table border="0" cellspacing="0" cellpadding="0">
              <tr>
                  <td><span class="genmed">{L_USERNAME}:</span> </td>
                  <td><input class="post" type="text" size="10" name="username"/> </td>
                  <td>
                    <input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} />
                    <span class="gensmall">{L_AUTO_LOGIN}</span>
                  </td>
              </tr>
 
              <tr>
                  <td><span class="genmed">{L_PASSWORD}:</span> </td>
                  <td><input class="post" type="password" size="10" name="password"/> </td>
                  <td>{S_HIDDEN_FIELDS}<input
class="mainoption" type="submit" name="login" value="{L_LOGIN}"
/></td>
              </tr>
            </table>
        </td>
      </tr>
  </table>
  <!-- END switch_fb_connect_no -->
 
  <!-- BEGIN switch_fb_connect -->
  <table width="90%" border="0" cellspacing="0" cellpadding="0" class="user_login_form forumline">
      <tr>
        <td valign="top" width="100%"  class="row1" align="center">
            <table width="90%">
              <tr>
                  <td width="55%" valign="middle" align="right">
                    <table class="right">
                        <tr>
                          <td><span class="genmed">{L_USERNAME}:</span> </td>
                          <td><input class="post" type="text" size="10" name="username"/> </td>
                          <td>
                              <input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} />
                              <span class="gensmall">{L_AUTO_LOGIN}</span>
                          </td>
                        </tr>
 
                        <tr>
                          <td><span class="genmed">{L_PASSWORD}:</span> </td>
                          <td><input class="post" type="password" size="10" name="password"/> </td>
                          <td>{S_HIDDEN_FIELDS}<input
class="mainoption" type="submit" name="login" value="{L_LOGIN}"
/></td>
                        </tr>
                    </table>
                  </td>
                  <td width="10%" align="center" valign="middle">
                    <span class="genmed fb_or">{switch_user_login_form_header.switch_fb_connect.L_OR}</span>
                  </td>
                  <td width="35%"
class="align_gauche"><fb:login-button size="large"
onlogin="facebook_login()" v="2"
scope="{switch_user_login_form_header.switch_fb_connect.L_FB_PERMISSIONS}">{switch_user_login_form_header.switch_fb_connect.L_FB_LOGIN_BUTTON}</fb:login-button></td>
              </tr>
            </table>
        </td>
      </tr>
  </table>
  <!-- END switch_fb_connect -->
</form>
<!-- END switch_user_login_form_header -->
 
{CHATBOX_TOP}
{BOARD_INDEX}
 
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
          <td width="50%" valign="top">
            <!-- BEGIN switch_user_logged_in -->
            <span class="gensmall"><a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a>
            <!-- END switch_user_logged_in -->
            <!-- BEGIN switch_delete_cookies -->
            <br /><a
href="{switch_delete_cookies.U_DELETE_COOKIES}"
class="gensmall">{switch_delete_cookies.L_DELETE_COOKIES}</a>
            <!-- END switch_delete_cookies -->
            </span>
          </td>
          <td width="50%" align="right">
            <span class="gensmall">
                <a href="{U_TODAY_ACTIVE}" class="gensmall">{L_TODAY_ACTIVE}</a><br />
                <a href="{U_TODAY_POSTERS}" class="gensmall">{L_TODAY_POSTERS}</a><br />
                <a href="{U_OVERALL_POSTERS}" class="gensmall">{L_OVERALL_POSTERS}</a>
                <!-- BEGIN switch_on_index -->
                  <!-- BEGIN switch_delete_cookies -->
                  <br /><a
href="{switch_on_index.switch_delete_cookies.U_DELETE_COOKIES}"
class="gensmall">{switch_on_index.switch_delete_cookies.L_DELETE_COOKIES}</a>
                  <!-- END switch_delete_cookies -->
                <!-- END switch_on_index -->
            </span>
          </td>
      </tr>
    </table>
 
<!-- BEGIN switch_user_login_form_footer -->
<form action="{S_LOGIN_ACTION}" method="post" name="form_login">
  <!-- BEGIN switch_fb_connect_no -->
  <table width="90%" border="0" cellspacing="0" cellpadding="0" class="user_login_form forumline">
      <tr>
        <td class="row1" align="center">
            <table border="0" cellspacing="0" cellpadding="0">
              <tr>
                  <td><span class="genmed">{L_USERNAME}:</span> </td>
                  <td><input class="post" type="text" size="10" name="username"/> </td>
                  <td>
                    <input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} />
                    <span class="gensmall">{L_AUTO_LOGIN}</span>
                  </td>
              </tr>
 
              <tr>
                  <td><span class="genmed">{L_PASSWORD}:</span> </td>
                  <td><input class="post" type="password" size="10" name="password"/> </td>
                  <td>{S_HIDDEN_FIELDS}<input
class="mainoption" type="submit" name="login" value="{L_LOGIN}"
/></td>
              </tr>
            </table>
        </td>
      </tr>
  </table>
  <!-- END switch_fb_connect_no -->
 
  <!-- BEGIN switch_fb_connect -->
  <table width="90%" border="0" cellspacing="0" cellpadding="0" class="user_login_form forumline">
      <tr>
        <td valign="top" width="100%"  class="row1" align="center">
            <table width="90%">
              <tr>
                  <td width="55%" valign="middle">
                    <table class="right">
                        <tr>
                          <td><span class="genmed">{L_USERNAME}:</span> </td>
                          <td><input class="post" type="text" size="10" name="username"/> </td>
                          <td>
                              <input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} />
                              <span class="gensmall">{L_AUTO_LOGIN}</span>
                          </td>
                        </tr>
 
                        <tr>
                          <td><span class="genmed">{L_PASSWORD}:</span> </td>
                          <td><input class="post" type="password" size="10" name="password"/> </td>
                          <td>{S_HIDDEN_FIELDS}<input
class="mainoption" type="submit" name="login" value="{L_LOGIN}"
/></td>
                        </tr>
                    </table>
                  </td>
                  <td width="10%" align="center" valign="middle">
                    <span class="genmed fb_or">{switch_user_login_form_footer.switch_fb_connect.L_OR}</span>
                  </td>
                  <td width="35%"
class="align_gauche"><fb:login-button size="large"
onlogin="facebook_login()" v="2"
scope="{switch_user_login_form_footer.switch_fb_connect.L_FB_PERMISSIONS}">{switch_user_login_form_footer.switch_fb_connect.L_FB_LOGIN_BUTTON}</fb:login-button></td>
              </tr>
            </table>
        </td>
      </tr>
  </table>
  <!-- END switch_fb_connect -->
</form>
<!-- END switch_user_login_form_footer -->
 
<!-- BEGIN disable_viewonline --><table width="100%"
align="center" border="0" cellspacing="0" cellpadding="0"
height="167">
<tbody><tr>
<td width="140">
<img src="http://i45.servimg.com/u/f45/14/05/10/51/3_0510.png" width="140" height="167"></td>
<td align="center" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0410.png">
<img src="http://i45.servimg.com/u/f45/14/05/10/51/3_0310.gif" width="262" height="167"></td>
<td width="131">
<img src="http://www.shy22.com/pngfile/f2z39883.png" width="131" height="167"></td>
</tr>
</tbody></table>
</tr>
 
</tbody></table>
<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="28" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0910.png">
<td valign="middle">
<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
           
    <tr>
        <td class="catHead" height="25" align="right"><span
class="cattitle"> {TOTAL_USERS_ONLINE}</a></span></td>
    </tr>
 
 
 
 
 
    <tr>
        <td class="row1"><span class="gensmall">{RECORD_USERS}<br />
        {LOGGED_IN_USER_LIST}</span></td>
    </tr>
 
 
 
 
 
    <tr>
        <td class="catHead" height="19" align="right">
        <p align="center"><font
color="#008000"><b><span
class="cattitle"> الاعضاء اللى منورين<span
lang="ar-eg">ا</span></a></span></b></font></td>
    </tr>
        <td class="row3" align="center"><span class="gensmall">{GROUP_LEGEND}</span></td>
{L_CONNECTED_MEMBERS}
 
 
 
 
    <tr>
        <td class="catHead" colspan="2" height="25" align="right">
        <p align="center"><b><span class="cattitle"> إحصائيات
        <span lang="ar-eg"><font
color="#008000">المنتدى</font></span></a></span></b></td>
    </tr>
        <td class="row1" width="100%">
        <p align="center"><span
class="gensmall">{TOTAL_POSTS}.                    |                    {TOTAL_USERS}                    |                    {NEWEST_USER}</span></td>
    </tr>
 
 
 
 
 
 
 
 
 
 
    <tr>
        <td class="catHead" height="25" align="right">
        <p align="center"><font color="#B30000"><b><span class="cattitle">
        <span lang="ar-eg">النهارده عيد ميلاد مين</span></span></b></font></td>
    </tr>
    {L_WHOSBIRTHDAY_TODAY}
    {L_WHOSBIRTHDAY_WEEK}
 
    <!-- BEGIN switch_chatbox_activate -->
    <tr>
        <td class="row1">
            <span class="gensmall">{TOTAL_CHATTERS_ONLINE} :  {CHATTERS_LIST} <br />
                <!-- BEGIN switch_chatbox_popup -->
                <div id="chatbox_popup"></div>
                <script type="text/javascript">
                //<![CDATA[
               
insertChatBoxPopup('{disable_viewonline.switch_chatbox_activate.switch_chatbox_popup.U_FRAME_CHATBOX}',
 '{L_CLICK_TO_JOIN_CHAT}');
                //]]>
                </script>
                <!-- END switch_chatbox_popup -->
            </span>
        </td>
    </tr>
    <!-- END switch_chatbox_activate -->
</table>
<td width="29" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0710.png">
</td>
</tr>
</tbody>
</table>
<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0" height="27">
<tbody><tr>
<td width="76">
<img src="http://i45.servimg.com/u/f45/14/05/10/51/3_1410.png" width="126" height="40"></td>
<td align="center"
background="http://i45.servimg.com/u/f45/14/05/10/51/3_1310.png"><img
 src="http://2img.net/i/fa/empty.gif" width="14"
height="27"></td>
<td width="97">
<img src="http://i45.servimg.com/u/f45/14/05/10/51/3_1210.png" width="115" height="40"></td>
</tr>
</tbody></table>
</tr>
</tbody></table>
</tr>
</tbody></table>
<!-- END disable_viewonline -->
{CHATBOX_BOTTOM}
<br clear="all" />
<!-- BEGIN switch_legend -->
<p align="right">  
<img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" /><span class="gensmall">   
مواضيع جديدة</span></p>
<p align="right">  <img src="{FORUM_IMG}"
alt="{L_NO_NEW_POSTS}" /><span
class="gensmall">   
لا توجد أية مواضيع جديدة</span></p>
<p align="right">  <img src="{FORUM_LOCKED_IMG}"
alt="{L_FORUM_LOCKED}" /><span
class="gensmall">   
المنتدى مُقفل</span></p>
<!-- END switch_legend -->
 
 
{AUTO_DST}
 
<!-- BEGIN switch_fb_index_login -->
<div id="fb-root"></div>
<script type="text/javascript">
//<![CDATA[
FB.init({
  appId: '{switch_fb_index_login.FACEBOOK_APP_ID}',
    status: true,
    cookie: true,
    xfbml: true,
    oauth: true
});
//]]>
</script>
<!-- END switch_fb_index_login -->
M.CABO
M.CABO
 
 

ذكر
عدد المساهمات : 1500
معدل النشاط : 7611
السُمعة : 6

http://kingofpop.forumsmusic.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

حذف الأخطاء الموجودة فى القوالب Empty رد: حذف الأخطاء الموجودة فى القوالب

مُساهمة من طرف M.CABO الإثنين 30 يناير 2012 - 17:17

قالب index_box

الكود:
</tr>
</tbody></table>
<p align="center"> </p>
<!-- BEGIN catrow --><!-- BEGIN tablehead -->

<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" height="167">
<tbody><tr>
<td width="140">
<img src="http://i45.servimg.com/u/f45/14/05/10/51/3_0510.png" width="140" height="167"></td>
<td align="center" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0410.png">
<img src="http://i45.servimg.com/u/f45/14/05/10/51/3_0310.gif" width="262" height="167"></td>
<td width="131">
<img src="http://www.shy22.com/pngfile/f2z39883.png" width="131" height="167"></td>
</tr>
</tbody></table>
<table style="width: 100%" dir="rtl" cellspacing="0" cellpadding="0" class="odessabox1">
    <tr>
<td width="28" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0910.png"> </td>
        <td><table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
            <tr>
                <td>
<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
<tr>
<th colspan="{catrow.tablehead.INC_SPAN}" nowrap="nowrap" width="100%" class="secondarytitle">
 {catrow.tablehead.L_FORUM} </th>
<th nowrap="nowrap" width="150"><div style="width:150px;">{L_LASTPOST}</div></th>
<th nowrap="nowrap" width="50">{L_TOPICS}</th>
<th nowrap="nowrap" width="50">{L_POSTS}</th>
<th nowrap="nowrap" width="100"><div style="width:100px; height:19px">المراقبين</div></th></tr>
<!-- END tablehead --><!-- BEGIN cathead -->
<tr>
<!-- BEGIN inc -->
<td class="{catrow.cathead.inc.INC_CLASS}" width="46"><img src="{SPACER}" height="0" width="46" /></td>
<!-- END inc -->
<td class="{catrow.cathead.CLASS_CAT}" colspan="4">
<p align="center">
<h{catrow.cathead.LEVEL} class="hierarchy">
<span class="cattitle">
<a class="cattitle" title="{catrow.cathead.CAT_DESC}" href="{catrow.cathead.U_VIEWCAT}">
{catrow.cathead.CAT_TITLE}</a>
</span>
</h{catrow.cathead.LEVEL}>
</td>
</tr>
<!-- END cathead -->
<!-- BEGIN forumrow -->
<tr>
<!-- BEGIN inc -->
<td class="{catrow.forumrow.inc.INC_CLASS}" width="46"><img
src="{SPACER}" height="0" width="46" alt="." /></td>
<!-- END inc -->
<td class="{catrow.forumrow.INC_CLASS}" align="center" valign="middle">
<img title="{catrow.forumrow.L_FORUM_FOLDER_ALT}"
src="{catrow.forumrow.FORUM_FOLDER_IMG}"
alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" />
</td>
<td class="row1 over" colspan="{catrow.forumrow.INC_SPAN}" valign="top" width="100%" height="50">
<h{catrow.forumrow.LEVEL} class="hierarchy">
<span class="forumlink">
<a class="forumlink" href="{catrow.forumrow.U_VIEWFORUM}">
{catrow.forumrow.FORUM_NAME}</a><br />
</span>
</h{catrow.forumrow.LEVEL}>
<span class="genmed">{catrow.forumrow.FORUM_DESC}</span>
<span class="gensmall">
{catrow.forumrow.L_LINKS}{catrow.forumrow.LINKS}
</span>
</td>
<!-- BEGIN forum_link_no -->
<td class="row3 over" align="center" valign="middle" height="50">
<span class="gensmall"><img
src="http://www.mmagreb.com/vb/images/icons/icon1.gif">{catrow.forumrow.LAST_POST}</span>
</td>
<td class="row3" align="center" valign="middle" height="50">
<span class="gensmall">{catrow.forumrow.TOPICS}<p>
<img alt="" src="http://i66.servimg.com/u/f66/13/86/62/90/01910.png"></span></td>
<td class="row2" align="center" valign="middle" height="50">
<span class="gensmall">{catrow.forumrow.POSTS}<p>
<img alt="" src="http://i66.servimg.com/u/f66/13/86/62/90/01710.png"></span>
</td>
<!-- END forum_link_no -->
<td class="row3 over" align="center" valign="middle" height="50">
<!-- BEGIN switch_moderators_links -->
<table dir="ltr" border="0" cellpadding="0"
cellspacing="0"><tbody><tr><span
class="gensmall"><span class="gensmall"><span
class="gensmall"><span
class="gensmall"></span></span></span></span><td
 class="row2" colspan="3" align="center" valign="middle"
height="50"><span class="gensmall"><ul
id="topMenu"><li class="" onmouseover="this.className = 'over';"
onmouseout="this.className = '';"></li><li class=""
onmouseover="this.className = 'over';" onmouseout="this.className =
'';">
<img src="http://i25.servimg.com/u/f25/14/05/10/51/24vsd510.png"
alt="" width="50" height="50"><ul style="width: 200px; top: 10px;
left: 20px;" -3px;="" 25px;="" 50%="" top:="" 26px;="" left:=""
10px;=""><li><table class="forumline" border="0"
cellpadding="0" cellspacing="1"
width="100%"><tbody></span></td></tr><tr><td
 class="row1" onmouseover='this.className="row2"'
onmouseout='this.className="row1"' width="100%">
{catrow.forumrow.switch_moderators_links.L_MODERATOR}{catrow.forumrow.switch_moderators_links.MODERATORS}
</td></tr></tbody></table></li></ul></li></ul><table
 dir="ltr" border="0" cellpadding="0"
cellspacing="0"><style>#topMenu{padding: 0;margin:
0;list-style: none;}#topMenu li{float: left;list-style:none;position:
relative;}#topMenu li ul{display: none;position: absolute;left:
0;padding: 0;margin: 0;}#topMenu li:hover ul, #topMenu li.over
ul{display:
block;}</style></table></span></td></tr></tbody></table>
<!-- END switch_moderators_links -->
</td><!-- BEGIN forum_link -->
<td class="row3" align="center" valign="middle" height="50" style="width: 280px"><span class="gensmall">
{catrow.forumrow.forum_link.HIT_COUNT}</td>
<!-- END forum_link -->
</tr>
<!-- END forumrow -->
<!-- BEGIN catfoot -->
<tr>
<!-- BEGIN inc -->
<td class="{catrow.catfoot.inc.INC_CLASS}" width="46"><img src="{SPACER}" height="0" width="46" /></td>
<!-- END inc -->
<td class="spaceRow" colspan="{catrow.catfoot.INC_SPAN}"
height="1"><img src="{SPACER}" alt="" height="1" width="1"
/></td>
</tr>
<!-- END catfoot -->
<!-- BEGIN tablefoot -->
</table>
                </td>
            </tr>
        </table></td>
<td width="29" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0710.png"> </td>
    </tr>
</table>
<table style="width: 100%" dir="rtl" cellspacing="0" cellpadding="0" class="odessabox1">
    <tr>
        <table width="100%" align="center" border="0" cellpadding="0" cellspacing="0" height="27">
<tbody><tr>
<td width="76">
<img src="http://i45.servimg.com/u/f45/14/05/10/51/3_1410.png" width="126" height="40"></td>
<td align="center"
background="http://i45.servimg.com/u/f45/14/05/10/51/3_1310.png"><img
 src="http://2img.net/i/fa/empty.gif" width="14"
height="27"></td>
<td width="97">
<img src="http://i45.servimg.com/u/f45/14/05/10/51/3_1210.png" width="115" height="40"></td>
</tr>
</tbody></table>
</tr>
</tbody></table>
    </tr>
</table>
<!-- END tablefoot --><!-- END catrow -->
<p> </p>
   

قالب message_body

الكود:
<table width="100%" border="0" cellspacing="2" cellpadding="0" align="center">
    <tr>
        <td class="nav"><a class="nav" href="{U_INDEX}">{L_INDEX}</a></td>
    </tr>
</table>
<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="4">
    <tr>
        <th class="thHead" height="25"><b>{MESSAGE_TITLE}</b></th>
    </tr>
    <tr>
        <td class="row1">
        <table width="100%" border="0" cellspacing="0" cellpadding="1">
            <tr>
                <td> </td>
            </tr>
            <tr>
                <td align="center"><span
class="gen">{MESSAGE_TEXT}</span> <br><img border="0"
src="http://i66.servimg.com/u/f66/11/26/31/75/nzrmxi10.gif"></td>
            </tr>
            <tr>
                <td> </td>
            </tr>
        </table>
        </td>
    </tr>
</table>
<br clear="all" />

قالب topics_list_box

الكود:
<!-- BEGIN topics_list_box --><!-- BEGIN row
--><!-- BEGIN header_table --><!-- BEGIN multi_selection
-->
<script type="text/javascript">
function check_uncheck_main_{topics_list_box.row.header_table.BOX_ID}() {
    var all_checked = true;
    for (i = 0; (i < document.{topics_list_box.FORMNAME}.elements.length) && all_checked; i++) {
        if (document.{topics_list_box.FORMNAME}.elements[i].name ==
'{topics_list_box.FIELDNAME}[]{topics_list_box.row.header_table.BOX_ID}')
 {
            all_checked = document.{topics_list_box.FORMNAME}.elements[i].checked;
        }
    }
    document.{topics_list_box.FORMNAME}.all_mark_{topics_list_box.row.header_table.BOX_ID}.checked = all_checked;
}
function check_uncheck_all_{topics_list_box.row.header_table.BOX_ID}() {
    for (i = 0; i < document.{topics_list_box.FORMNAME}.length; i++) {
        if (document.{topics_list_box.FORMNAME}.elements[i].name ==
'{topics_list_box.FIELDNAME}[]{topics_list_box.row.header_table.BOX_ID}')
 {
            document.{topics_list_box.FORMNAME}.elements[i].checked =
document.{topics_list_box.FORMNAME}.all_mark_{topics_list_box.row.header_table.BOX_ID}.checked;
        }
    }
}
</script>
<!-- END multi_selection -->

<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
    <tr>
        <th colspan="{topics_list_box.row.header_table.COLSPAN}"
align="center"
nowrap="nowrap"> {topics_list_box.row.L_TITLE} </th>
        <th align="center" nowrap="nowrap" width="80"> {topics_list_box.row.L_REPLIES} </th>
        <th align="center" nowrap="nowrap" width="100"> {topics_list_box.row.L_AUTHOR} </th>
        <th align="center" nowrap="nowrap" width="50"> {topics_list_box.row.L_VIEWS} </th>
        <th align="center" nowrap="nowrap" width="150"> {topics_list_box.row.L_LASTPOST} </th>
        <!-- BEGIN multi_selection -->
        <th align="center" nowrap="nowrap" width="20"><input
onclick="check_uncheck_all_{topics_list_box.row.header_table.BOX_ID}();"
 type="checkbox"
name="all_mark_{topics_list_box.row.header_table.BOX_ID}" value="0"
/></th>
    <!-- END multi_selection -->
    </tr>
    <!-- BEGIN pagination -->
    <tr>
        <td class="row1" colspan="7" align="right"><span class="gensmall">{PAGINATION}</span></td>
    </tr>
    <!-- END pagination -->
    <!-- END header_table --><!-- BEGIN header_row -->
    <tr>
        <td class="row3"
colspan="{topics_list_box.row.COLSPAN}"><span
class="gensmall"> <b>{topics_list_box.row.L_TITLE}</b></span></td>
    </tr>
<!-- END header_row -->

<!-- BEGIN topic -->
{topics_list_box.row.END_TABLE_STICKY}
    <tr>
        <!-- BEGIN single_selection -->
        <td class="{topics_list_box.row.ROW_CLASS}" align="center"
valign="middle" width="20"><input type="radio"
name="{topics_list_box.FIELDNAME}" value="{topics_list_box.row.FID}"
{topics_list_box.row.L_SELECT} /></td>
        <!-- END single_selection -->
        <td class="{topics_list_box.row.ROW_FOLDER_CLASS}"
align="center" valign="middle" width="20"><img
title="{topics_list_box.row.L_TOPIC_FOLDER_ALT}"
src="{topics_list_box.row.TOPIC_FOLDER_IMG}"
alt="{topics_list_box.row.L_TOPIC_FOLDER_ALT}" /></td>
        <!-- BEGIN icon -->
        <td class="{topics_list_box.row.ROW_CLASS}" align="center"
valign="middle" width="20">{topics_list_box.row.ICON}</td>
        <!-- END icon -->
        <td class="{topics_list_box.row.ROW_CLASS}"
onmouseover='this.className="row2"'
onmouseout='this.className="{topics_list_box.row.ROW_CLASS}"'
width="100%">
            <div class="topictitle">
                {topics_list_box.row.NEWEST_POST_IMG}{topics_list_box.row.PARTICIPATE_POST_IMG}{topics_list_box.row.TOPIC_TYPE}
                <h2 class="topic-title">
<a class="topictitle"
href="{topics_list_box.row.U_VIEW_TOPIC}">{topics_list_box.row.TOPIC_TITLE}&nbsp
 على منتديات مايكل جاكسون لشباب العرب</a>
</h2>
            </div>
            <!-- BEGIN switch_description -->
            <span class="genmed">
                <br />
                {topics_list_box.row.topic.switch_description.TOPIC_DESCRIPTION}
            </span>
            <!-- END switch_description -->
            <span
class="gensmall">{topics_list_box.row.TOPIC_ANNOUNCES_DATES}{topics_list_box.row.TOPIC_CALENDAR_DATES}</span> 
            <span
class="gensmall">{topics_list_box.row.GOTO_PAGE}<!-- BEGIN
nav_tree -->{topics_list_box.row.TOPIC_NAV_TREE} <!-- END nav_tree
 --></span>
        </td>

        <td class="row2" align="center" valign="middle"><span
class="postdetails">{topics_list_box.row.REPLIES}</span></td>
        <td class="row3" align="center" valign="middle"><span
class="name"><strong>{topics_list_box.row.TOPIC_AUTHOR}</strong></span></td>
        <td class="row2" align="center" valign="middle"><span
class="postdetails">{topics_list_box.row.VIEWS}</span></td>
        <td class="row3Right" onmouseover='this.className="row1"'
onmouseout='this.className="row3Right"' align="center" valign="middle"
nowrap="nowrap"><span
class="postdetails">{topics_list_box.row.LAST_POST_TIME}<br
/>{topics_list_box.row.LAST_POST_AUTHOR}
{topics_list_box.row.LAST_POST_IMG}</span></td>
<!-- BEGIN multi_selection -->
        <td class="row2" align="center" valign="middle"><span
class="postdetails"><input
onclick="javascript:check_uncheck_main_{topics_list_box.row.BOX_ID}();"
type="checkbox"
name="{topics_list_box.FIELDNAME}[]{topics_list_box.row.BOX_ID}"
value="{topics_list_box.row.FID}" {topics_list_box.row.L_SELECT}
/></span></td>
    <!-- END multi_selection -->
    </tr>
    <!-- END topic --><!-- BEGIN no_topics -->
    <tr>
        <td class="row1" colspan="{topics_list_box.row.COLSPAN}"
align="center" valign="middle" height="30"><span
class="gen">{topics_list_box.row.L_NO_TOPICS}</span></td>
    </tr>
    <!-- END no_topics --><!-- BEGIN bottom -->
    <tr>
        <td class="catBottom" colspan="{topics_list_box.row.COLSPAN}" valign="middle">
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                    <td> <span class="gensmall">{PAGINATION}</span></td>
                    <td align="right"><a href="#top">{L_BACK_TO_TOP}</a> </td>
                </tr>
            </table>
        </td>
    </tr>
<!-- END bottom --><!-- BEGIN footer_table -->
</table><!-- END footer_table --><!-- BEGIN spacer
--><br class="gensmall" /><!-- END spacer --><!-- END
row --><!-- END topics_list_box -->

قالب viewforum_body

الكود:
{BOARD_INDEX}
<table width="100%" border="0" cellspacing="2" cellpadding="0" align="center">
    <tr>
        <td align="left" valign="middle" width="50">
            <!-- BEGIN switch_user_authpost -->
            <a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img
src="{POST_IMG}" id="{POST_IMG_ID}" alt="{L_POST_NEW_TOPIC}" border="0"
/></a>
            <!-- END switch_user_authpost -->
        </td>
        <td class="nav" valign="middle" width="100%"><div
class="nav"><a class="nav"
href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}</div></td>
        <td class="gensmall" align="right" valign="bottom" nowrap="nowrap">
            <span class="nav">
                <script type="text/javascript">
                //<![CDATA[
                    insert_plus_menu('f{FORUM_ID}&f={FORUM_ID}','{JS_SESSION_ID}', {JS_AUTH_FAVOURITES});
                //]]>
                </script>
            </span>
        </td>
    </tr>
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" height="74">
<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" height="41">
<tbody><tr>
<td width="140">
<img src="http://i45.servimg.com/u/f45/14/05/10/51/3_0510.png" width="140" height="167"></td>
<td align="center" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0410.png">
<img src="http://i45.servimg.com/u/f45/14/05/10/51/3_0310.gif" width="262" height="167"></td>
<td width="131">
<img src="http://www.shy22.com/pngfile/f2z39883.png" width="131" height="167"></td>
</tr>
</tbody></table>

<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="28" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0910.png">
<td valign="middle">
{TOPICS_LIST_BOX}
<td width="29" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0710.png">
</td>
</tr>
</tbody>
</table>
<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0" height="27">
<tbody><tr>
<td width="76">
<img src="http://i45.servimg.com/u/f45/14/05/10/51/3_1410.png" width="126" height="40"></td>
<td align="center"
background="http://i45.servimg.com/u/f45/14/05/10/51/3_1310.png"><img
 src="http://2img.net/i/fa/empty.gif" width="14"
height="27"></td>
<td width="97">
<img src="http://i45.servimg.com/u/f45/14/05/10/51/3_1210.png" width="115" height="40"></td>
</tr>
</tbody></table>
</tr>
</tbody></table>
<div id="info_open" style="display:''">
    <table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
        <tr>
            <td class="row1" align="left" valign="top"><span
class="gensmall"><a
href="{U_MARK_READ}">{L_MARK_TOPICS_READ}</a></span></td>
            <td class="row1" align="right" valign="top"><span
class="gensmall">{S_WATCH_FORUM}</span></td>
        </tr>
        <tr>
            <td class="row2" colspan="2" valign="top"><span
class="gensmall"><b>{LOGGED_IN_USER_LIST}</b></span></td>
        </tr>
        <tr>
            <td class="row2" valign="top" width="150"><span
class="gensmall"><b>{L_MODERATOR}:</b></span></td>
            <td class="row1" valign="top"><span class="gensmall">{MODERATORS}</span></td>
        </tr>
        <tr>
            <td class="row2" valign="top" width="150"><span
class="gensmall">{L_TABS_PERMISSIONS}</span></td>
            <td class="row1" valign="top"><span class="gensmall">{S_AUTH_LIST}</span></td>
        </tr>
        <tr>
            <td class="catBottom" colspan="2" height="28">
                <table width="100%" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                        <td class="nav" valign="middle"
width="100%"><div class="nav"> <a class="nav"
href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC_SECOND}</div></td>
                        <td align="right" valign="middle"><span
 class="gensmall"><a
href="javascript:ShowHideLayer('info_open','info_close');"><img
src="{TABS_LESS_IMG}" alt="-" align="middle" border="0"
/></a></span></td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
</div>

<div id="info_close" style="display:none">
    <table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
        <tr>
            <td class="row1" colspan="2" align="right"
valign="top"><span class="gensmall"><a
href="{U_MARK_READ}">{L_MARK_TOPICS_READ}</a></span></td>
        </tr>
        <tr>
            <td class="row2" colspan="2" valign="top"><span
class="gensmall"><b>{LOGGED_IN_USER_LIST}</b></span></td>
        </tr>
        <tr>
            <td class="catBottom" colspan="2" height="28">
                <table width="100%" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                        <td class="nav" valign="middle"
width="100%"><span class="nav"> <a class="nav"
href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC_SECOND}</span></td>
                        <td align="right" valign="middle"><span
 class="gensmall"><a
href="javascript:ShowHideLayer('info_open','info_close');"><img
src="{TABS_MORE_IMG}" alt="+" align="middle" border="0"
/></a></span></td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
</div>
    <form action="{S_JUMPBOX_ACTION}" method="get" name="jumpbox"
onsubmit="if(document.jumpbox.f.value == -1){return false;}">
<table width="100%" border="0" cellspacing="2" cellpadding="0" align="center">
    <tr>

            <td align="left" valign="middle" width="50">
                <!-- BEGIN switch_user_logged_in -->
                <a href="{U_POST_NEW_TOPIC}"
rel="nofollow"><img src="{POST_IMG}" id="{POST_IMG_ID}1"
alt="{L_POST_NEW_TOPIC}" border="0" /></a>
                <!-- END switch_user_logged_in -->
            </td>
            <td align="right" nowrap="nowrap"><span
class="gensmall">{L_JUMP_TO}: {S_JUMPBOX_SELECT} <input
 class="liteoption" type="submit" value="{L_GO}"
/></span></td>

    </tr>
    <!-- BEGIN switch_legend -->
    <tr>
        <td colspan="2">
            <table border="0" cellpadding="6" cellspacing="2" align="center">
                <tr>
                    <td>
                        <img src="{FOLDER_NEW_IMG}"
alt="{L_FOLDER_NEW_IMG}" border="0" /> <span
class="gensmall">{L_FOLDER_NEW_IMG}</span><br />
                        <img src="{FOLDER_HOT_NEW_IMG}"
alt="{L_FOLDER_HOT_NEW_IMG}" border="0" /> <span
class="gensmall">{L_FOLDER_HOT_NEW_IMG}</span><br />
                        <img src="{FOLDER_LOCKED_NEW_IMG}"
alt="{L_FOLDER_LOCKED_NEW_IMG}" border="0" /> <span
class="gensmall">{L_FOLDER_LOCKED_NEW_IMG}</span>
                    </td>
                    <td>
                        <img src="{FOLDER_IMG}" alt="{L_FOLDER_IMG}"
border="0" /> <span
class="gensmall">{L_FOLDER_IMG}</span><br />
                        <img src="{FOLDER_HOT_IMG}"
alt="{L_FOLDER_HOT_IMG}" border="0" /> <span
class="gensmall">{L_FOLDER_HOT_IMG}</span><br />
                        <img src="{FOLDER_LOCKED_IMG}"
alt="{L_FOLDER_LOCKED_IMG}" border="0" /> <span
class="gensmall">{L_FOLDER_LOCKED_IMG}</span>
                    </td>
                    <td valign="top">
                        <img src="{FOLDER_ANNOUNCE_IMG}"
alt="{L_FOLDER_ANNOUNCE_IMG}" border="0" /> <span
class="gensmall">{L_FOLDER_ANNOUNCE_IMG}</span><br />
                        <img src="{FOLDER_GLOBAL_ANNOUNCE_IMG}"
alt="{L_FOLDER_GLOBAL_ANNOUNCE_IMG}" border="0" /> <span
class="gensmall">{L_FOLDER_GLOBAL_ANNOUNCE_IMG}</span><br
/>
                        <img src="{FOLDER_STICKY_IMG}"
alt="{L_FOLDER_STICKY_IMG}" border="0" /> <span
class="gensmall">{L_FOLDER_STICKY_IMG}</span><br />
                    </td>
                </tr>
            </table>
        </td>
    </tr>
    <!-- END switch_legend -->
</table>
        </form>
M.CABO
M.CABO
 
 

ذكر
عدد المساهمات : 1500
معدل النشاط : 7611
السُمعة : 6

http://kingofpop.forumsmusic.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

حذف الأخطاء الموجودة فى القوالب Empty رد: حذف الأخطاء الموجودة فى القوالب

مُساهمة من طرف M.CABO الإثنين 30 يناير 2012 - 17:18

قالب viewtopic_body

الكود:
        <script type="text/javascript">

        //<![CDATA[

        var multiquote_img_off = '{JS_MULTIQUOTE_IMG_OFF}',
multiquote_img_on = '{JS_MULTIQUOTE_IMG_ON}', _atr = '{JS_DIR}addthis/',
 _ati = '{PATH_IMG_FA}addthis/'{ADDTHIS_LANG}, addthis_localize = {
share_caption: "{L_SHARE_CAPTION}", email: "{L_EMAIL}", email_caption:
"{L_EMAIL_CAPTION}", favorites: "{L_SHARE_BOOKMARKS}", print:
"{L_PRINT}", more: "{L_MORE}" };

        $(function(){

            _atc.cwait = 0;

            $('.addthis_button').mouseup(function(){

                if ($('#at15s').css('display') == 'block') {

                    addthis_close();

                    addthis_close();

                }

            });

        });

        //]]>

        </script>



        <table width="100%" border="0" cellspacing="2" cellpadding="0">

            <tr>

                <td align="left" valign="middle" nowrap="nowrap">

                    <span class="nav">

                    <!-- BEGIN switch_user_authpost -->

                    <a href="{U_POST_NEW_TOPIC}"
rel="nofollow"><img src="{POST_IMG}" id="{POST_IMG_ID}one"
alt="{L_POST_NEW_TOPIC}" align="middle" border="0"
/></a>   

                    <!-- END switch_user_authpost -->

                    <!-- BEGIN switch_user_authreply -->

                    <a href="{U_POST_REPLY_TOPIC}"><img
src="{REPLY_IMG}" id="i_reply" alt="{L_POST_REPLY_TOPIC}" align="middle"
 border="0" /></a>

                    <!-- END switch_user_authreply -->

                    </span>

                </td>

                <td class="nav" valign="middle"
width="100%"><span class="nav"><a class="nav"
href="{U_INDEX}">

                {L_INDEX}</a>{NAV_SEP}<a class="nav"
href="{U_ALBUM}">{L_ALBUM}</a>{NAV_CAT_DESC_SECOND}</span></td>

                <td align="right" valign="bottom" nowrap="nowrap" width="100%">

                    <span class="gensmall bold">

                        <a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&pub=forumotion">

                    {L_SHARE}</a>

                         | 

                        <script type="text/javascript">

                        //<![CDATA[

                        insert_plus_menu('f{FORUM_ID}&t={TOPIC_ID}','{JS_SESSION_ID}', {JS_AUTH_FAVOURITES});

                        //]]>

                        </script>

                    </span>

                </td>

            </tr>

        <table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" height="74">

        <table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" height="41">

        <tbody><tr>

        <td width="140">

        <img src="http://i45.servimg.com/u/f45/14/05/10/51/3_0510.png" width="140" height="167"></td>

        <td align="center" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0410.png">

        <img src="http://i45.servimg.com/u/f45/14/05/10/51/3_0310.gif" width="262" height="167"></td>

        <td width="131">

        <img src="http://www.shy22.com/pngfile/f2z39883.png" width="131" height="167"></td>

        </tr>

        </tbody></table>

        </tr>

        </tbody></table>

        <table width="100%" align="center" border="0" cellpadding="0" cellspacing="0">

        <tbody>

        <tr>

        <td width="28" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0910.png">

        <td valign="middle">

        <table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">

            <tr align="right">

                <td class="catHead" colspan="3" height="28">

                    <table width="100%" border="0" cellspacing="0" cellpadding="0">

                        <tr>

                            <td width="9%" class="noprint"> </td>

                            <td align="center" nowrap="nowrap" class="t-title"><h1 class="cattitle">

                             <!-- google_ad_section_start
-->{TOPIC_TITLE}<!-- google_ad_section_end
--></h1></td>

                            <td align="right" nowrap="nowrap"
width="9%" class="browse-arrows"><a
href="{U_VIEW_OLDER_TOPIC}">

                           
{L_VIEW_PREVIOUS_TOPIC}</a> <a
href="{U_VIEW_NEWER_TOPIC}">{L_VIEW_NEXT_TOPIC}</a> <a
 href="#bottom">{L_GOTO_DOWN}</a> </td>

                        </tr>

                    </table>

                </td>

            </tr>

            <!-- BEGIN topicpagination -->

            <tr>

                <td class="row1 pagination" colspan="2" align="right" valign="top"><span class="gensmall">

                {PAGINATION}</span></td>

            </tr>

            <!-- END topicpagination -->

            {POLL_DISPLAY}

            <tr>

                <th class="thLeft" nowrap="nowrap" width="150px" height="26">{L_AUTHOR}</th>

                <th class="thRight" nowrap="nowrap" colspan="2">{L_MESSAGE}</th>

            </tr>

            <!-- BEGIN postrow -->

            <!-- BEGIN displayed -->

            <tr class="post">

                <td class="{postrow.displayed.ROW_CLASS}"{postrow.displayed.THANK_BGCOLOR} valign="top" width="150">

                    <div id="profil_head"></div>

                    <div id="profil_body"><span
class="name"><a
name="{postrow.displayed.U_POST_ID}"></a><strong>

                        {postrow.displayed.POSTER_NAME}</strong></span><br />

            <span class="postdetails poster-profile">

                        {postrow.displayed.POSTER_RANK}<br />

                        {postrow.displayed.RANK_IMAGE}{postrow.displayed.POSTER_AVATAR}<html>

        <head>

        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">

        <title>New Page 2</title>

        </head>



        <body>



        <span class="postdetails poster-profile">

        <div align="center">

            <table width="100%" border="2" bordercolor="74CF89">

            </table>

            <table style="border: 1px solid #000000;" width="42%" border="1">

                <tr>

                    <td style="background-color: #780000; border: 1px none" align="center">

                    <font style="color: White;" size="1">

                    <span style="font-family: Tahoma;"> بيانات اضافيه [ + ]  </span>

                    </font></td>

                </tr>

                <tr>

                    <td style="border: 0px none;" bordercolor="#74CF89">

                    <span class="postdetails poster-profile">

                    <table width="100%" align="right" border="0" cellpadding="0" cellspacing="2">

                        <tr>

                            <td class="css_helmtd"
style="border-width: 0px 3px; border-style: solid; border-color:
#74CF89;" align="right">

                             </td>

                        </tr>

                    </table>

                                <table width="99%" align="right" border="0" cellpadding="0" cellspacing="2">

                        <tr>

                            <td class="css_helmtd"
style="border-left:3px solid #780000; border-right:3px solid #780000;
border-top:0px solid #780000; border-bottom:0px solid #780000; "
align="right">

                        <span class="postdetails poster-profile">

                            <br />

                        <!-- BEGIN profile_field -->

                        {postrow.displayed.profile_field.LABEL}

                        {postrow.displayed.profile_field.CONTENT}{postrow.displayed.profile_field.SEPARATOR}

                        <!-- END profile_field -->

                        {postrow.displayed.POSTER_RPG}

                    </span><br />

                    <img src="http://2img.net/i/_.gif" alt="" style="width:150px;height:1px" />

                </td>

                        </tr>

                    </table>

                    <p> </p>

                    </span>

                    </td>

                </tr>

            </table>

            <!--

        show awards --><!--

        /show awards --></div>

        </span>



        </body>



        </html><br /> </div>

                    </td>

                <td
class="{postrow.displayed.ROW_CLASS}"{postrow.displayed.THANK_BGCOLOR}
valign="top" width="100%" height="28" colspan="2">

                    <table width="100%" border="0" cellspacing="0" cellpadding="0">

                        <tr>

                            <td><span
class="postdetails"><img src="{postrow.displayed.MINI_POST_IMG}"
alt="{postrow.displayed.L_MINI_POST_ALT}"
title="{postrow.displayed.L_MINI_POST_ALT}" border="0"
/>{L_POST_SUBJECT}:

                            {postrow.displayed.POST_SUBJECT} 
 <img src="{postrow.displayed.MINI_TIME_IMG}" alt=""
border="0" />{postrow.displayed.POST_DATE}</span></td>

                            <td valign="top" nowrap="nowrap" class="post-options">

                                {postrow.displayed.THANK_IMG}

                                {postrow.displayed.MULTIQUOTE_IMG}

                                {postrow.displayed.QUOTE_IMG}

                                {postrow.displayed.EDIT_IMG}

                                {postrow.displayed.DELETE_IMG}

                                {postrow.displayed.IP_IMG}

                                {postrow.displayed.REPORT_IMG}

                            </td>

                        </tr>

                        <tr>

                            <td colspan="2" class="hr">

                                <hr />

                            </td>

                        </tr>

                        <tr>

                            <td colspan="2">

        <div style="text-align: center;">

             </div>

                                <!-- BEGIN switch_vote_active -->

                                <div class="vote gensmall">

                                    <!-- BEGIN switch_vote -->

                                    <div class="vote-button"><a
 
href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_PLUS}">

                                        +</a></div>

                                    <!-- END switch_vote -->



                                    <!-- BEGIN switch_bar -->

                                    <div class="vote-bar" title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}">

                                        <!-- BEGIN switch_vote_plus -->

                                        <div class="vote-bar-plus"
style="height:{postrow.displayed.switch_vote_active.switch_bar.switch_vote_plus.HEIGHT_PLUS}px;"></div>

                                        <!-- END switch_vote_plus -->



                                        <!-- BEGIN switch_vote_minus -->

                                        <div class="vote-bar-minus"
style="height:{postrow.displayed.switch_vote_active.switch_bar.switch_vote_minus.HEIGHT_MINUS}px;"></div>

                                        <!-- END switch_vote_minus -->

                                    </div>

                                    <!-- END switch_bar -->



                                    <!-- BEGIN switch_no_bar -->

                                    <div title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}" class="vote-no-bar">

                                        ----</div>

                                    <!-- END switch_no_bar -->



                                    <!-- BEGIN switch_vote -->

                                    <div class="vote-button"><a
 
href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_MINUS}">

                                        -</a></div>

                                    <!-- END switch_vote -->

                                </div>

                                <!-- END switch_vote_active -->



                                <div class="postbody">

                                    <div><span style="font-size: 15px; line-height:

        normal;">{postrow.displayed.MESSAGE}</span></div>

    <div class="masdar">

        <span style="color: Red;">الموضوع الأصلي</span> :
<a href="topic-t{TOPIC_ID}.htm">{TOPIC_TITLE}</a> <span
style="color: Red;">الكاتب</span> : <a
href="%7Bpostrow.displayed.U_POST_ID%7D.htm">{postrow.displayed.POSTER_NAME}</a>

        <span style="color: Red;">المصدر</span> : <a
href="//kingofpop.hooxs.com">منتديات مايكل جاكسون لشباب
العرب</a></div>

                                    <!-- BEGIN switch_attachments -->

                                    <dl class="attachbox">

                                        <dt>

                                        {postrow.displayed.switch_attachments.L_ATTACHMENTS}</dt>

                                        <dd>

                                            <!-- BEGIN switch_post_attachments -->

                                            <dl class="file">

                                                <dt>

                                                    <img
src="{postrow.displayed.switch_attachments.switch_post_attachments.U_IMG}"
 />



                                                    <!-- BEGIN switch_dl_att -->

                                                    <a
class="postlink"
href="{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.U_ATTACHMENT}">

                                                   
{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT}</a>

                                                   
{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT_DEL}

                                                    <!-- END switch_dl_att -->



                                                    <!-- BEGIN switch_no_dl_att -->

                                                   
{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT}

                                                   
{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT_DEL}

                                                    <!-- END switch_no_dl_att -->

                                                </dt>



                                                <!-- BEGIN switch_no_comment -->

                                                <dd>

                                                    <em>

                                                   
{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_comment.ATTACHMENT_COMMENT}</em>

                                                </dd>

                                                <!-- END switch_no_comment -->



                                                <!-- BEGIN switch_no_dl_att -->

                                                <dd>

                                                    <em><strong>

                                                   
{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.TEXT_NO_DL}</strong></em>

                                                </dd>

                                                <!-- END switch_no_dl_att -->



                                                <dd>

                                                ({postrow.displayed.switch_attachments.switch_post_attachments.FILE_SIZE})

                                                {postrow.displayed.switch_attachments.switch_post_attachments.NB_DL}</dd>

                                            </dl>

                                            <!-- END switch_post_attachments -->

                                        </dd>

                                    </dl>

                                    <!-- END switch_attachments -->



                                    <div class="clear"></div>

                                         <p> </div>

        <div align="center">

                                    <div class="signature_div">

        <table class="forumline" width="100%" border="0"
cellpadding="0" cellspacing="1"><tbody><tr><td
class="catLeft" height="25"><span class="genmed module-title">

            {postrow.displayed.POSTER_NAME} ; توقيع العضو
</span></td></tr><tr><td class="row1"
align="center">

                {postrow.displayed.SIGNATURE}</td></tr></tbody></table>

                                    </div>



                                </div>

                                <span class="gensmall">

        {postrow.displayed.EDITED_MESSAGE}</span>

                            </td>

                        </tr>

                    </table>

                </td>

            </tr>

            <tr>

                <td class="{postrow.displayed.ROW_CLASS}
browse-arrows"{postrow.displayed.THANK_BGCOLOR} align="center"
valign="middle" width="150">

                    <a
href="#top">{L_BACK_TO_TOP}</a> <a
href="#bottom">{L_GOTO_DOWN}</a></td>

                <td class="{postrow.displayed.ROW_CLASS} messaging
gensmall"{postrow.displayed.THANK_BGCOLOR} width="100%" height="28">

                    <table border="0" cellspacing="0" cellpadding="0">

                        <tr>

                            <td valign="middle">

                                {postrow.displayed.PROFILE_IMG}

                                {postrow.displayed.PM_IMG} {postrow.displayed.EMAIL_IMG}<!-- BEGIN contact_field -->

                                {postrow.displayed.contact_field.CONTENT}<!-- END contact_field -->

                                {postrow.displayed.ONLINE_IMG}

                            </td>

                        </tr>

                    </table>

                </td>

            </tr>

            <!-- BEGIN first_post_br -->

        </table>

        <br />

        <table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">

            <tr>

                <th class="thLeft" nowrap="nowrap" width="150px" height="26">{L_AUTHOR}</th>

                <th class="thRight" nowrap="nowrap" colspan="2">{L_MESSAGE}</th>

            </tr>

            <!-- END first_post_br -->

            <!-- END displayed -->

            <!-- BEGIN hidden -->

            <tr>

                <td class="postdetails {postrow.hidden.ROW_CLASS}" colspan="2" align="center">

                {postrow.hidden.MESSAGE}</td>

            </tr>

            <!-- END hidden -->

            <!-- END postrow -->

            <!-- BEGIN no_post -->

            <tr align="center">

                <td class="row1" colspan="3" height="28">

                    <span class="genmed">{no_post.L_NO_POST}</span>

                </td>

            </tr>

            <!-- END no_post -->

            <tr align="right">

                <td class="catBottom" colspan="3" height="28">

                    <table width="100%" border="0" cellspacing="0" cellpadding="0">

                        <tr>

                            <td width="9%" class="noprint"> </td>

                            <td align="center" nowrap="nowrap"
class="t-title"><a name="bottomtitle"></a><h1
class="cattitle">

                            {TOPIC_TITLE}</h1></td>

                            <td align="right" nowrap="nowrap"
width="9%" class="browse-arrows"><a
href="{U_VIEW_OLDER_TOPIC}">

                           
{L_VIEW_PREVIOUS_TOPIC}</a> <a
href="{U_VIEW_NEWER_TOPIC}">{L_VIEW_NEXT_TOPIC}</a> <a
 href="#top">{L_BACK_TO_TOP}</a> </td>

                        </tr>

                    </table>

                </td>

            </tr>

        </table>

        <td width="29" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0710.png">

        </td>

        </tr>

        </tbody>

        </table>

        <table width="100%" align="center" border="0" cellpadding="0" cellspacing="0" height="27">

        <tbody><tr>

        <td width="76">

        <img src="http://i45.servimg.com/u/f45/14/05/10/51/3_1410.png" width="126" height="40"></td>

        <td align="center"
background="http://i45.servimg.com/u/f45/14/05/10/51/3_1310.png"><img
 src="http://2img.net/i/fa/empty.gif" width="14"
height="27"></td>

        <td width="97">

        <img src="http://i45.servimg.com/u/f45/14/05/10/51/3_1210.png" width="115" height="40"></td>

        </tr>

        </tbody></table>

        <table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" height="41">

        <tbody><tr>

        <td width="140">

        <img src="http://i45.servimg.com/u/f45/14/05/10/51/3_0510.png" width="140" height="167"></td>

        <td align="center" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0410.png">

        <img src="http://i45.servimg.com/u/f45/14/05/10/51/3_0310.gif" width="262" height="167"></td>

        <td width="131">

        <img src="http://www.shy22.com/pngfile/f2z39883.png" width="131" height="167"></td>

        </tr>

        </tbody></table>

        <table width="100%" align="center" border="0" cellpadding="0" cellspacing="0">

        <tbody>

        <tr>

        <td width="28" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0910.png">

        <td valign="middle">

        <table class="forumline noprint" width="100%" border="0" cellspacing="1" cellpadding="0">

            <tr>

                <td class="row2" valign="top" {COLSPAN_PAGINATION} width="150"><span class="gensmall">

                {PAGE_NUMBER}</span></td>

                <!-- BEGIN topicpagination -->

                <td class="row1" align="right" valign="top" ><span class="gensmall">

                {PAGINATION}</span></td>

                <!-- END topicpagination -->

            </tr>

            <!-- BEGIN switch_user_logged_in -->

            <!-- BEGIN watchtopic -->

            <tr>

                <td class="row2" colspan="2" align="right" valign="top"><span class="gensmall">

                {S_WATCH_TOPIC}</span></td>

            </tr>

            </tr>

        <tr>

          <td class="row2" colspan="2" align="right" valign="top">

           </td>

        </tr>    </tr>

            <tr>

              <td class="row2" colspan="2" align="right" valign="top">

              <p align="center">(( مَا يَلْفِظُ مِنْ قَوْلٍ إِلَّا لَدَيْهِ رَقِيبٌ عَتِيدٌ))</td>

            </tr>



          <!-- END watchtopic -->

            <!-- END switch_user_logged_in -->

            <tr>

                <td class="row2" colspan="2" align="center" style="padding:0px">

                    <!-- BEGIN switch_user_logged_in -->

                    <a name="quickreply"></a>

                    {QUICK_REPLY_FORM}<br />

                    <!-- END switch_user_logged_in --><style type="text/css"><!--

                     

                     

        .tborder {

          background: #cccccc;

          width: 100%;

          margin: auto auto;

          /*border: 2px solid #666666;*/

        }







        .thead {

          background:  #efefef url(http://hitskin.com/themes/15/24/25/i_back_title.png) top left repeat-x;

          color: #ffffff;

        }



        .thead a:link {

          color: #ffffff;

          text-decoration: none;

        }



        .thead a:visited {

          color: #ffffff;

          text-decoration: none;

        }



        .thead a:hover, .thead a:active {

          color: #ffffff;

          text-decoration: underline;

        }



        .trow1 {

        background: #F5F5F5;

        border-top: 2px solid #fff;

        border-left: 2px solid #fff;

        }



        .trow2 {

        background: #F6F6F6;

        border-top: 2px solid #fff;

        border-left: 2px solid #fff;

        }







        -->

        </style>

                </td>

            </tr>

            <tr>

                <td style="margin:0; padding: 0;" colspan="2">

                    <table border="0" cellpadding="0" width="100%" cellspacing="0" id="info_open" style="display:''">

                        <tbody>

                <!-- BEGIN show_permissions -->

                <tr>

                    <td class="row2" valign="top" width="25%"><span class="gensmall">

                    {L_TABS_PERMISSIONS}</span></td>

                    <td class="row1" valign="top" width="75%"><span class="gensmall">

                    {S_AUTH_LIST}</span></td>

                </tr>

                <!-- END show_permissions -->

                <tr>

                    <td class="catBottom" colspan="2" height="28">

                        <table width="100%" border="0" cellspacing="0" cellpadding="0">

                            <tr>

                                <td valign="middle"
width="100%"><span class="nav"><a class="nav"
href="{U_INDEX}">

                                {L_INDEX}</a>{NAV_SEP}<a
class="nav"
href="{U_ALBUM}">{L_ALBUM}</a>{NAV_CAT_DESC_SECOND}</span></td>

                                <!-- BEGIN show_permissions -->

                                <td align="right"
valign="middle"><span class="gensmall"><a
href="javascript:ShowHideLayer('info_open','info_close');"><img
src="{TABS_LESS_IMG}" alt="-" align="middle" border="0"
/></a></span></td>

                                <!-- END show_permissions -->

                            </tr>

                        </table>

                    </td>

                </tr>

            </tbody>

                    </table>

                </td>

            </tr>

            <tr>

                <td style="margin:0; padding: 0;" colspan="2">

                    <table border="0" cellpadding="0" cellspacing="0" width="100%" id="info_close" style="display:none;">

                        <tbody>

                <tr>

                    <td class="catBottom" colspan="2" height="28">

                        <table width="100%" border="0" cellspacing="0" cellpadding="0">

                            <tr>

                                <td valign="middle"
width="100%"><span class="nav"><a class="nav"
href="{U_INDEX}">

                                {L_INDEX}</a>{NAV_SEP}<a
class="nav"
href="{U_ALBUM}">{L_ALBUM}</a>{NAV_CAT_DESC_SECOND}</span></td>

                                <td align="right"
valign="middle"><span class="gensmall"><a
href="javascript:ShowHideLayer('info_open','info_close');"><img
src="{TABS_MORE_IMG}" alt="+" align="middle" border="0"
/></a></span></td>

                            </tr>

                        </table>

                    </td>

                </tr>

            </tbody>

                    </table>

                </td>

            </tr>

        </table>

        <td width="29" background="http://i45.servimg.com/u/f45/14/05/10/51/3_0710.png">

        </td>

        </tr>

        </tbody>

        </table>

        <table width="100%" align="center" border="0" cellpadding="0" cellspacing="0" height="27">

        <tbody><tr>

        <td width="76">

        <img src="http://i45.servimg.com/u/f45/14/05/10/51/3_1410.png" width="126" height="40"></td>

        <td align="center"
background="http://i45.servimg.com/u/f45/14/05/10/51/3_1310.png"><img
 src="http://2img.net/i/fa/empty.gif" width="14"
height="27"></td>

        <td width="97">

        <img src="http://i45.servimg.com/u/f45/14/05/10/51/3_1210.png" width="115" height="40"></td>

        </tr>

        </tbody></table>

        <form action="{S_JUMPBOX_ACTION}" method="get" name="jumpbox"
 onsubmit="if(document.jumpbox.f.value == -1){return false;}">

        <table class="noprint" width="100%" border="0" cellspacing="2" cellpadding="0" align="center">

            <tr>

                <td align="left" valign="middle" nowrap="nowrap" {WIDTH_GALLERY}>

                    <span class="nav">

                        <!-- BEGIN switch_user_authpost -->

                        <a href="{U_POST_NEW_TOPIC}"
rel="nofollow"><img src="{POST_IMG}" id="{POST_IMG_ID}Newtopic"
alt="{L_POST_NEW_TOPIC}" align="middle" border="0"
/></a>   

                        <!-- END switch_user_authpost -->

                        <!-- BEGIN switch_user_authreply -->

                        <a href="{U_POST_REPLY_TOPIC}"><img
src="{REPLY_IMG}" alt="{L_POST_REPLY_TOPIC}" align="middle" border="0"
/></a>

                        <!-- END switch_user_authreply -->

                    </span>

                </td>

                <!-- BEGIN viewtopic_bottom -->

                <td align="right" nowrap="nowrap"><span class="gensmall">

               
{L_JUMP_TO}: {S_JUMPBOX_SELECT} <input
class="liteoption" type="submit" value="{L_GO}"
/></span></td>

                <!-- END viewtopic_bottom -->

                <!-- BEGIN moderation_panel -->

                <td align="center">

                    <span class="gensmall">{moderation_panel.U_YOUR_PERSONAL_MODERATE}</span>

                </td>

                <td align="center" width="250">

                    <span class="gensmall"> </span>

                </td>

                <!-- END moderation_panel -->

            </tr>

        </table>

        </form>



        <!-- BEGIN viewtopic_bottom -->

        <table class="noprint" width="100%" border="0" cellspacing="2" cellpadding="0" align="center">

            <tr>

                <td colspan="2" align="left" valign="top" nowrap="nowrap"><br />

                {S_TOPIC_ADMIN}<br />

                    <form name="action" method="get" action="{S_FORM_MOD_ACTION}">

                        <input type="hidden" name="t" value="{TOPIC_ID}" />

                        <input type="hidden" name="sid" value="{S_SID}" />

                        <span class="gen">{L_MOD_TOOLS}<br
/>{S_SELECT_MOD} <input class="liteoption" type="submit"
value="{L_GO}" /></span>

                    </form>

                </td>

            </tr>

        </table>

        <!-- END viewtopic_bottom -->



        <!-- BEGIN switch_image_resize -->

        <script type="text/javascript">

        //<![CDATA[

        $(resize_images({ 'selector' : '.postbody', 'max_width' :
{switch_image_resize.IMG_RESIZE_WIDTH}, 'max_height' :
{switch_image_resize.IMG_RESIZE_HEIGHT} }));

        //]]>

        </script>

        <!-- END switch_image_resize -->



        <script type="text/javascript" src="{JS_DIR}addthis/addthis_widget.js"></script>

قالب mod_recent_topics

الكود:


                <style>

                div.title {

                font-size: 12px;

                font-weight: bold;

                text-decoration: none;

                color: #fff;

                text-align:center;

                }

                </style>

                <!-- BEGIN classical_row -->

                <table class="forumline" width="100%" border="0"
cellspacing="1" cellpadding="3" align="center"><tbody>

                <thead><tr><th
colspan="{catrow.tablehead.INC_SPAN}" nowrap="nowrap" width="100%"
class="secondarytitle">

                <div class="ist">آخر المواضيع</div>

                </th></tr></thead>

                <tr>

                <td style="padding: 0px; background: rgb(255, 255,
255) none repeat scroll 0% 0%; -moz-background-clip: border;
-moz-background-origin: padding; -moz-background-inline-policy:
continuous;" width="100%">

                <table border="0" cellpadding="0" cellspacing="0" colspan="3" width="100%">



                <tr><td class="catHead" colspan="2" width="50%">

                <div class="title"><font color="White">الموضوع</font></div>

                </td>

                <td class="catHead" colspan="1" width="25%">

                <div class="title"><font color="White">تاريخ ارسال  المشاركة</font></div>

                </td>

                <td class="catHead" colspan="1" width="25%">

                <div class="title"><font color="White">بواسطة</font></div>

                </td></tr>



                <tr valign="top">

                <td colspan="1" style="border-top: 0px none; padding:
 0px; background: transparent
url(http://i1036.photobucket.com/albums/a449/a1tinhgia3/image/list.gif)
no-repeat scroll center top; -moz-background-clip: border;
-moz-background-origin: padding; -moz-background-inline-policy:
continuous;" width="24"><img src="http://2img.net/i/fa/empty.gif"
 width="24" border="0"></td><td style="border-top: 0px none;
 padding: 0px; line-height: 20px; background-repeat: repeat;"
align="right"
background="http://i1036.photobucket.com/albums/a449/a1tinhgia3/image/listbg.gif"
 width="50%">



                <!-- BEGIN recent_topic_row -->

                <a
href="{classical_row.recent_topic_row.U_TITLE}"><b><font
style="font-family: Tahoma; font-size:
11px">{classical_row.recent_topic_row.L_TITLE}</font></b></a><br>



                <!-- END recent_topic_row -->

                </td>

                <td style="border-top: 0px none; padding: 0px;
line-height: 16.5px; background-repeat: repeat;" align="center"
background="http://i1036.photobucket.com/albums/a449/a1tinhgia3/image/listbg.gif"
 width="25%">

                <span class="gensmall">

                <!-- BEGIN recent_topic_row -->

                <img src="http://img816.imageshack.us/img816/9845/11750606.png" width="16px" height="16px" />

                {ON} {classical_row.recent_topic_row.S_POSTTIME}

                <br><!-- END recent_topic_row -->

                </span>

                </td>

                <td style="border-top: 0px none; padding: 0px;
line-height: 17px; background-repeat: repeat;" align="right"
background="http://i1036.photobucket.com/albums/a449/a1tinhgia3/image/listbg.gif"
 width="25%">

                <!-- BEGIN switch_poster -->

                <a
href="{classical_row.recent_topic_row.switch_poster.U_POSTER}">{classical_row.recent_topic_row.switch_poster.S_POSTER}</a>

                <!-- END switch_poster -->

                <!-- BEGIN switch_poster_guest -->

                {classical_row.recent_topic_row.switch_poster_guest.S_POSTER}

                <!-- END switch_poster_guest -->

                <!-- BEGIN recent_topic_row -->

                <img src="http://www.birazkisisel.com/wp-content/plugins/wp-favorite-posts/img/star.png">

                <a
href="{classical_row.recent_topic_row.switch_poster.U_POSTER}"><font
 style="font-family: Tahoma; font-size:
11px">{classical_row.recent_topic_row.switch_poster.S_POSTER}</font></a>

                <br><!-- END recent_topic_row -->



                </td>

                </tr></table></td></tr></tbody></table>

                <!-- END classical_row -->



وشكــــــــــــــرا
M.CABO
M.CABO
 
 

ذكر
عدد المساهمات : 1500
معدل النشاط : 7611
السُمعة : 6

http://kingofpop.forumsmusic.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

حذف الأخطاء الموجودة فى القوالب Empty رد: حذف الأخطاء الموجودة فى القوالب

مُساهمة من طرف M.CABO الإثنين 30 يناير 2012 - 18:13

حذف الأخطاء الموجودة فى القوالب 103798 حذف الأخطاء الموجودة فى القوالب 103798 حذف الأخطاء الموجودة فى القوالب 103798
M.CABO
M.CABO
 
 

ذكر
عدد المساهمات : 1500
معدل النشاط : 7611
السُمعة : 6

http://kingofpop.forumsmusic.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

حذف الأخطاء الموجودة فى القوالب Empty رد: حذف الأخطاء الموجودة فى القوالب

مُساهمة من طرف M.CABO الثلاثاء 31 يناير 2012 - 1:32

حذف الأخطاء الموجودة فى القوالب 103798
M.CABO
M.CABO
 
 

ذكر
عدد المساهمات : 1500
معدل النشاط : 7611
السُمعة : 6

http://kingofpop.forumsmusic.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

حذف الأخطاء الموجودة فى القوالب Empty رد: حذف الأخطاء الموجودة فى القوالب

مُساهمة من طرف M.CABO الثلاثاء 31 يناير 2012 - 13:38

ارجوا الرد
M.CABO
M.CABO
 
 

ذكر
عدد المساهمات : 1500
معدل النشاط : 7611
السُمعة : 6

http://kingofpop.forumsmusic.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

حذف الأخطاء الموجودة فى القوالب Empty رد: حذف الأخطاء الموجودة فى القوالب

مُساهمة من طرف M.CABO السبت 4 فبراير 2012 - 21:21

Cool
M.CABO
M.CABO
 
 

ذكر
عدد المساهمات : 1500
معدل النشاط : 7611
السُمعة : 6

http://kingofpop.forumsmusic.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

حذف الأخطاء الموجودة فى القوالب Empty رد: حذف الأخطاء الموجودة فى القوالب

مُساهمة من طرف M.CABO الجمعة 17 فبراير 2012 - 18:58

ارجوا الرد
M.CABO
M.CABO
 
 

ذكر
عدد المساهمات : 1500
معدل النشاط : 7611
السُمعة : 6

http://kingofpop.forumsmusic.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

حذف الأخطاء الموجودة فى القوالب Empty رد: حذف الأخطاء الموجودة فى القوالب

مُساهمة من طرف YasirAyad السبت 18 فبراير 2012 - 2:15

مرحبا بك عزيزي

اخي اعطيني قالب فيه خطأ لتصحيح الخطا مع تحديده

وهل لي ان اعرف اين الخطأ يا قمر
YasirAyad
YasirAyad
 
 

ذكر
عدد المساهمات : 10113
معدل النشاط : 15262
السُمعة : 297

http://yasirayad.com/

الرجوع الى أعلى الصفحة اذهب الى الأسفل

حذف الأخطاء الموجودة فى القوالب Empty رد: حذف الأخطاء الموجودة فى القوالب

مُساهمة من طرف M.CABO الجمعة 24 فبراير 2012 - 17:30

يا غالى انا عاوز منك انك تراجع جميع القوالب

والقالب الذى يوجد به حطأ صححه

بس
M.CABO
M.CABO
 
 

ذكر
عدد المساهمات : 1500
معدل النشاط : 7611
السُمعة : 6

http://kingofpop.forumsmusic.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

الرجوع الى أعلى الصفحة

- مواضيع مماثلة

 
صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى