Home aeyStudio
Welcome Guest · Registration
Resources
Download Seportal
Demo Site
SePortal Sites

Users
Username:

Password:

Log me on automatically next visit?


» Forgot password
» Registration

Topics
Home
Seportal (5)
News (3)

Who is Online
Currently active users: 2
There are currently 0 registered user(s) (0 among them invisible) and 2 guest(s) online.

Random Image
Resimler/Images

Resimler/Images
Comments: 0
zebaniz

Powered By
Powered by SePortal

Rate SePortal at
Listed at Hot Scripts in PHP

Scripts.com


ScriptSearch.com


PHP



Add Reply New Topic

> [2008-07-01] Important security fix for 2.4 - Önemli bir düzeltme
 
 
zebaniz
Posted: 01.07.2008 - 17:15
Quote


Administrator
Group Icon

Group: Admin
Total posts: 284
User No: 1
Join Date: 01.01.2007 00:00



 
Türkçe:
1- search.php dosyasını açın
Aşağıdaki metni bulun (72. satır)
PHP

if ($action == "showform") {
    
$showform 1;

    
$site_template->register_vars(array(
      
"html_forums" => html_forums(),
      
"lang_keywords_title" => $lang['keywords_title'],
      
"lang_key_search" => $lang['key_search'],
      
"lang_mem_search" => $lang['mem_search'],
      
"lang_keysearch_text" => $lang['keysearch_text'],
      
"lang_match_name_ex" => $lang['match_name_ex'],
      
"lang_search_options" => $lang['search_options'],
      
"lang_src_forums" => $lang['src_forums'],
      
"lang_search_in_subs" => $lang['search_in_subs'],
      
"lang_search_events" => $lang['search_events'],
      
"html_articles" => get_portalcategorys("articles"$lang['all_articles'], $cat_parent_cache$cat_cache),
      
"html_gallery" => get_portalcategorys("gallery"$lang['all_gallery'], $gal_cat_parent_cache$gal_cat_cache),
      
"html_links" => get_portalcategorys("links"$lang['all_links'], $link_cat_parent_cache$link_cat_cache),
      
"html_files" => get_portalcategorys("files"$lang['all_files'], $down_cat_parent_cache$down_cat_cache),
      
"lang_src_articles" => $lang['src_articles'],
      
"lang_src_gallery" => $lang['src_gallery'],
      
"lang_src_links" => $lang['src_links'],
      
"lang_src_files" => $lang['src_files'],
      
"lang_src_staticpages" => $lang['src_staticpages'],
      
"lang_src_comments" => $lang['src_comments'],
      
"lang_search_where" => $lang['search_where'],
      
"lang_search_refine" => $lang['search_refine'],
      
"lang_search_from" => $lang['search_from'],
      
"lang_today" => $lang['today'],
      
"lang_this_week" => $lang['this_week'],
      
"lang_this_month" => $lang['this_month'],
      
"lang_this_60" => $lang['this_60'],
      
"lang_this_90" => $lang['this_90'],
      
"lang_this_180" => $lang['this_180'],
      
"lang_this_year" => $lang['this_year'],
      
"lang_ever" => $lang['ever'],
      
"lang_older" => $lang['older'],
      
"lang_newer" => $lang['newer'],
      
"lang_do_search" => $lang['do_search'],
      
"lang_in_posts" => $lang['in_posts'],
      
"lang_in_topics" => $lang['in_topics'],
      
"lang_result_type" => $lang['result_type'],
      
"lang_results_topics" => $lang['results_topics'],
      
"lang_results_post" => $lang['results_post'],
      
"lang_sort_results" => $lang['sort_results'],
      
"lang_last_date" => $lang['last_date'],
      
"lang_number_topics" => $lang['number_topics'],
      
"lang_poster_name" => $lang['poster_name'],
      
"lang_data_name" => $lang['data_name'],
      
"lang_descending_order" => $lang['descending_order'],
      
"lang_ascending_order" => $lang['ascending_order']
    ));

}
//end showform

ve aşağıdaki ile değiştirin:
PHP

if ($action == "showform") {
    
$showform 1;
    
$checked_articles "";
    
$checked_images   "";
    
$checked_links    "";
    
$checked_files    "";
    
$checked_forums   "";

     
$cat_id_sql_articles get_auth_cat_sql("viewcat_perms""NOTIN"$cat_cache);
    
$sql_articles "SELECT c.*, a.* FROM ".ARTICLE_TABLE." a, ".CATEGORIES_TABLE." c WHERE a.cat_id NOT IN ($cat_id_sql_articles) AND a.cat_id=c.cat_id AND a.article_active = 1";
    
$result_articles $site_db->query($sql_articles);
    
$num_articles $site_db->get_numrows($result_articles);
    if ( 
$num_articles ) {
        
$checked_articles 'checked="checked"';
    }

     
$cat_id_sql_images get_auth_cat_sql("viewcat_perms""NOTIN"$gal_cat_cache);
    
$sql_images "SELECT c.*, i.* FROM ".GAL_IMAGES_TABLE." i, ".GAL_CATEGORIES_TABLE." c WHERE i.cat_id NOT IN ($cat_id_sql_images) AND i.cat_id=c.cat_id AND i.image_active = 1";
    
$result_images $site_db->query($sql_images);
    
$num_images $site_db->get_numrows($result_images);
    if ( 
$num_images ) {
        
$checked_images 'checked="checked"';
    }

     
$cat_id_sql_links get_auth_cat_sql("viewcat_perms""NOTIN"$link_cat_cache);
    
$sql_links "SELECT c.*, l.* FROM ".LINKS_TABLE." l, ".LINKS_CATEGORIES_TABLE." c WHERE l.cat_id NOT IN ($cat_id_sql_links) AND l.cat_id=c.cat_id AND l.link_active = 1";
    
$result_links $site_db->query($sql_links);
    
$num_links $site_db->get_numrows($result_links);
    if ( 
$num_links ) {
        
$checked_links 'checked="checked"';
    }

     
$cat_id_sql_files get_auth_cat_sql("viewcat_perms""NOTIN"$down_cat_cache);
    
$sql_files "SELECT c.*, d.* FROM ".DOWNLOADS_TABLE." d, ".DOWN_CATEGORIES_TABLE." c WHERE d.cat_id NOT IN ($cat_id_sql_files) AND d.cat_id=c.cat_id AND d.active = 1";
    
$result_files $site_db->query($sql_files);
    
$num_files $site_db->get_numrows($result_files);
    if ( 
$num_files ) {
        
$checked_files 'checked="checked"';
    }

     
$sql_forums "SELECT c.cat_active, f.id, f.read_perms, f.password FROM ".FORUM_FORUMS_TABLE." f, ".FORUM_CATEGORIES_TABLE." c WHERE c.id=f.category AND c.cat_active <> 0";
    
$result_forums $site_db->query($sql_forums);
    
$num_forums $site_db->get_numrows($result_forums);
    if ( 
$num_forums ) {
        
$checked_forums 'checked="checked"';
    }


    
$site_template->register_vars(array(
      
"html_forums" => html_forums(),
      
"lang_keywords_title" => $lang['keywords_title'],
      
"lang_key_search" => $lang['key_search'],
      
"lang_mem_search" => $lang['mem_search'],
      
"lang_keysearch_text" => $lang['keysearch_text'],
      
"lang_match_name_ex" => $lang['match_name_ex'],
      
"lang_search_options" => $lang['search_options'],
      
"lang_src_forums" => $lang['src_forums'],
      
"lang_search_in_subs" => $lang['search_in_subs'],
      
"lang_search_events" => $lang['search_events'],
      
"html_articles" => get_portalcategorys("articles"$lang['all_articles'], $cat_parent_cache$cat_cache),
      
"html_gallery" => get_portalcategorys("gallery"$lang['all_gallery'], $gal_cat_parent_cache$gal_cat_cache),
      
"html_links" => get_portalcategorys("links"$lang['all_links'], $link_cat_parent_cache$link_cat_cache),
      
"html_files" => get_portalcategorys("files"$lang['all_files'], $down_cat_parent_cache$down_cat_cache),
      
"lang_src_articles" => $lang['src_articles'],
      
"lang_src_gallery" => $lang['src_gallery'],
      
"lang_src_links" => $lang['src_links'],
      
"lang_src_files" => $lang['src_files'],
      
"lang_src_staticpages" => $lang['src_staticpages'],
      
"lang_src_comments" => $lang['src_comments'],
      
"lang_search_where" => $lang['search_where'],
      
"lang_search_refine" => $lang['search_refine'],
      
"lang_search_from" => $lang['search_from'],
      
"lang_today" => $lang['today'],
      
"lang_this_week" => $lang['this_week'],
      
"lang_this_month" => $lang['this_month'],
      
"lang_this_60" => $lang['this_60'],
      
"lang_this_90" => $lang['this_90'],
      
"lang_this_180" => $lang['this_180'],
      
"lang_this_year" => $lang['this_year'],
      
"lang_ever" => $lang['ever'],
      
"lang_older" => $lang['older'],
      
"lang_newer" => $lang['newer'],
      
"lang_do_search" => $lang['do_search'],
      
"lang_in_posts" => $lang['in_posts'],
      
"lang_in_topics" => $lang['in_topics'],
      
"lang_result_type" => $lang['result_type'],
      
"lang_results_topics" => $lang['results_topics'],
      
"lang_results_post" => $lang['results_post'],
      
"lang_sort_results" => $lang['sort_results'],
      
"lang_last_date" => $lang['last_date'],
      
"lang_number_topics" => $lang['number_topics'],
      
"lang_poster_name" => $lang['poster_name'],
      
"lang_data_name" => $lang['data_name'],
      
"lang_descending_order" => $lang['descending_order'],
      
"lang_ascending_order" => $lang['ascending_order'],
      
"checked_articles" => $checked_articles,
      
"checked_images" => $checked_images,
      
"checked_links" => $checked_links,
      
"checked_files" => $checked_files,
      
"checked_forums" => $checked_forums
    
));

}
//end showform


2- templates/default/search.html dosyasını açın
Aşağıdaki metni bulun (39. satır)
CODE

<table class='row1' border="0" cellpadding="4" cellspacing="2" width="100%">
<tr>
<td width="33%" valign="top" align="center"><input type='checkbox' name='inarticles' id='in_articles' value='1' class="checkbox" checked="checked"/> <label for="in_articles"><b>{lang_src_articles}</b></label>
<br>{html_articles}</td>
<td width="34%" valign="top" align="center"><input type='checkbox' name='ingallery' id='in_gallery' value='1' class="checkbox" checked="checked"/> <label for="in_gallery"><b>{lang_src_gallery}</b></label>
<br>{html_gallery}</td>
<td width="33%" valign="top" align="center"><input type='checkbox' name='inlinks' id='in_links' value='1' class="checkbox" checked="checked"/> <label for="in_links"><b>{lang_src_links}</b></label>
<br>{html_links}</td>
</tr>
<tr>
<td width="33%" valign="top" align="center">
<input type='checkbox' name='infiles' id='in_files' value='1' class="checkbox" checked="checked"/> <label for="in_files"><b>{lang_src_files}</b></label>
<br>{html_files}<br>
</td>
<td width="33%" valign="top" align="center">
<input type='checkbox' name='inforums' id='in_forums' value='1' class="checkbox" checked="checked"/> <label for="in_forums"><b>{lang_src_forums}</b></label>
<br>{html_forums}<br>
<div align="left"><input type='checkbox' name='searchsubs' value='1' id="searchsubs" checked="checked" /> <label for="searchsubs">{lang_search_in_subs}</label></div>
</td>
<td width="34%" valign="top">
<input type='checkbox' name='inevents' id='in_events' value='1' class="checkbox" checked="checked"/> <label for="in_events"><b>{lang_search_events}</b></label><br>
<input type='checkbox' name='instaticpages' id='in_staticpages' value='1' class="checkbox" checked="checked"/> <label for="in_staticpages"><b>{lang_src_staticpages}</b></label><br>
<input type='checkbox' name='incomments' id='in_comments' value='1' class="checkbox" checked="checked"/> <label for="in_comments"><b>{lang_src_comments}</b></label>
</td>
</tr>
</table>

ve aşağıdaki ile değiştirin
CODE

<table class='row1' border="0" cellpadding="4" cellspacing="2" width="100%">
<tr>
<td width="33%" valign="top" align="center"><input type='checkbox' name='inarticles' id='in_articles' value='1' class="checkbox" {checked_articles}/> <label for="in_articles"><b>{lang_src_articles}</b></label>
<br>{html_articles}</td>
<td width="34%" valign="top" align="center"><input type='checkbox' name='ingallery' id='in_gallery' value='1' class="checkbox" {checked_images}/> <label for="in_gallery"><b>{lang_src_gallery}</b></label>
<br>{html_gallery}</td>
<td width="33%" valign="top" align="center"><input type='checkbox' name='inlinks' id='in_links' value='1' class="checkbox" {checked_links}/> <label for="in_links"><b>{lang_src_links}</b></label>
<br>{html_links}</td>
</tr>
<tr>
<td width="33%" valign="top" align="center">
<input type='checkbox' name='infiles' id='in_files' value='1' class="checkbox" {checked_files}/> <label for="in_files"><b>{lang_src_files}</b></label>
<br>{html_files}<br>
</td>
<td width="33%" valign="top" align="center">
<input type='checkbox' name='inforums' id='in_forums' value='1' class="checkbox" {checked_forums}/> <label for="in_forums"><b>{lang_src_forums}</b></label>
<br>{html_forums}<br>
<div align="left"><input type='checkbox' name='searchsubs' value='1' id="searchsubs" checked="checked" /> <label for="searchsubs">{lang_search_in_subs}</label></div>
</td>
<td width="34%" valign="top">
<input type='checkbox' name='inevents' id='in_events' value='1' class="checkbox" checked="checked"/> <label for="in_events"><b>{lang_search_events}</b></label><br>
<input type='checkbox' name='instaticpages' id='in_staticpages' value='1' class="checkbox" checked="checked"/> <label for="in_staticpages"><b>{lang_src_staticpages}</b></label><br>
<input type='checkbox' name='incomments' id='in_comments' value='1' class="checkbox" checked="checked"/> <label for="in_comments"><b>{lang_src_comments}</b></label>
</td>
</tr>
</table>




English:
1- Open search.php
and find (line 72)
PHP

if ($action == "showform") {
    
$showform 1;

    
$site_template->register_vars(array(
      
"html_forums" => html_forums(),
      
"lang_keywords_title" => $lang['keywords_title'],
      
"lang_key_search" => $lang['key_search'],
      
"lang_mem_search" => $lang['mem_search'],
      
"lang_keysearch_text" => $lang['keysearch_text'],
      
"lang_match_name_ex" => $lang['match_name_ex'],
      
"lang_search_options" => $lang['search_options'],
      
"lang_src_forums" => $lang['src_forums'],
      
"lang_search_in_subs" => $lang['search_in_subs'],
      
"lang_search_events" => $lang['search_events'],
      
"html_articles" => get_portalcategorys("articles"$lang['all_articles'], $cat_parent_cache$cat_cache),
      
"html_gallery" => get_portalcategorys("gallery"$lang['all_gallery'], $gal_cat_parent_cache$gal_cat_cache),
      
"html_links" => get_portalcategorys("links"$lang['all_links'], $link_cat_parent_cache$link_cat_cache),
      
"html_files" => get_portalcategorys("files"$lang['all_files'], $down_cat_parent_cache$down_cat_cache),
      
"lang_src_articles" => $lang['src_articles'],
      
"lang_src_gallery" => $lang['src_gallery'],
      
"lang_src_links" => $lang['src_links'],
      
"lang_src_files" => $lang['src_files'],
      
"lang_src_staticpages" => $lang['src_staticpages'],
      
"lang_src_comments" => $lang['src_comments'],
      
"lang_search_where" => $lang['search_where'],
      
"lang_search_refine" => $lang['search_refine'],
      
"lang_search_from" => $lang['search_from'],
      
"lang_today" => $lang['today'],
      
"lang_this_week" => $lang['this_week'],
      
"lang_this_month" => $lang['this_month'],
      
"lang_this_60" => $lang['this_60'],
      
"lang_this_90" => $lang['this_90'],
      
"lang_this_180" => $lang['this_180'],
      
"lang_this_year" => $lang['this_year'],
      
"lang_ever" => $lang['ever'],
      
"lang_older" => $lang['older'],
      
"lang_newer" => $lang['newer'],
      
"lang_do_search" => $lang['do_search'],
      
"lang_in_posts" => $lang['in_posts'],
      
"lang_in_topics" => $lang['in_topics'],
      
"lang_result_type" => $lang['result_type'],
      
"lang_results_topics" => $lang['results_topics'],
      
"lang_results_post" => $lang['results_post'],
      
"lang_sort_results" => $lang['sort_results'],
      
"lang_last_date" => $lang['last_date'],
      
"lang_number_topics" => $lang['number_topics'],
      
"lang_poster_name" => $lang['poster_name'],
      
"lang_data_name" => $lang['data_name'],
      
"lang_descending_order" => $lang['descending_order'],
      
"lang_ascending_order" => $lang['ascending_order']
    ));

}
//end showform

replace:
PHP

if ($action == "showform") {
    
$showform 1;
    
$checked_articles "";
    
$checked_images   "";
    
$checked_links    "";
    
$checked_files    "";
    
$checked_forums   "";

     
$cat_id_sql_articles get_auth_cat_sql("viewcat_perms""NOTIN"$cat_cache);
    
$sql_articles "SELECT c.*, a.* FROM ".ARTICLE_TABLE." a, ".CATEGORIES_TABLE." c WHERE a.cat_id NOT IN ($cat_id_sql_articles) AND a.cat_id=c.cat_id AND a.article_active = 1";
    
$result_articles $site_db->query($sql_articles);
    
$num_articles $site_db->get_numrows($result_articles);
    if ( 
$num_articles ) {
        
$checked_articles 'checked="checked"';
    }

     
$cat_id_sql_images get_auth_cat_sql("viewcat_perms""NOTIN"$gal_cat_cache);
    
$sql_images "SELECT c.*, i.* FROM ".GAL_IMAGES_TABLE." i, ".GAL_CATEGORIES_TABLE." c WHERE i.cat_id NOT IN ($cat_id_sql_images) AND i.cat_id=c.cat_id AND i.image_active = 1";
    
$result_images $site_db->query($sql_images);
    
$num_images $site_db->get_numrows($result_images);
    if ( 
$num_images ) {
        
$checked_images 'checked="checked"';
    }

     
$cat_id_sql_links get_auth_cat_sql("viewcat_perms""NOTIN"$link_cat_cache);
    
$sql_links "SELECT c.*, l.* FROM ".LINKS_TABLE." l, ".LINKS_CATEGORIES_TABLE." c WHERE l.cat_id NOT IN ($cat_id_sql_links) AND l.cat_id=c.cat_id AND l.link_active = 1";
    
$result_links $site_db->query($sql_links);
    
$num_links $site_db->get_numrows($result_links);
    if ( 
$num_links ) {
        
$checked_links 'checked="checked"';
    }

     
$cat_id_sql_files get_auth_cat_sql("viewcat_perms""NOTIN"$down_cat_cache);
    
$sql_files "SELECT c.*, d.* FROM ".DOWNLOADS_TABLE." d, ".DOWN_CATEGORIES_TABLE." c WHERE d.cat_id NOT IN ($cat_id_sql_files) AND d.cat_id=c.cat_id AND d.active = 1";
    
$result_files $site_db->query($sql_files);
    
$num_files $site_db->get_numrows($result_files);
    if ( 
$num_files ) {
        
$checked_files 'checked="checked"';
    }

     
$sql_forums "SELECT c.cat_active, f.id, f.read_perms, f.password FROM ".FORUM_FORUMS_TABLE." f, ".FORUM_CATEGORIES_TABLE." c WHERE c.id=f.category AND c.cat_active <> 0";
    
$result_forums $site_db->query($sql_forums);
    
$num_forums $site_db->get_numrows($result_forums);
    if ( 
$num_forums ) {
        
$checked_forums 'checked="checked"';
    }


    
$site_template->register_vars(array(
      
"html_forums" => html_forums(),
      
"lang_keywords_title" => $lang['keywords_title'],
      
"lang_key_search" => $lang['key_search'],
      
"lang_mem_search" => $lang['mem_search'],
      
"lang_keysearch_text" => $lang['keysearch_text'],
      
"lang_match_name_ex" => $lang['match_name_ex'],
      
"lang_search_options" => $lang['search_options'],
      
"lang_src_forums" => $lang['src_forums'],
      
"lang_search_in_subs" => $lang['search_in_subs'],
      
"lang_search_events" => $lang['search_events'],
      
"html_articles" => get_portalcategorys("articles"$lang['all_articles'], $cat_parent_cache$cat_cache),
      
"html_gallery" => get_portalcategorys("gallery"$lang['all_gallery'], $gal_cat_parent_cache$gal_cat_cache),
      
"html_links" => get_portalcategorys("links"$lang['all_links'], $link_cat_parent_cache$link_cat_cache),
      
"html_files" => get_portalcategorys("files"$lang['all_files'], $down_cat_parent_cache$down_cat_cache),
      
"lang_src_articles" => $lang['src_articles'],
      
"lang_src_gallery" => $lang['src_gallery'],
      
"lang_src_links" => $lang['src_links'],
      
"lang_src_files" => $lang['src_files'],
      
"lang_src_staticpages" => $lang['src_staticpages'],
      
"lang_src_comments" => $lang['src_comments'],
      
"lang_search_where" => $lang['search_where'],
      
"lang_search_refine" => $lang['search_refine'],
      
"lang_search_from" => $lang['search_from'],
      
"lang_today" => $lang['today'],
      
"lang_this_week" => $lang['this_week'],
      
"lang_this_month" => $lang['this_month'],
      
"lang_this_60" => $lang['this_60'],
      
"lang_this_90" => $lang['this_90'],
      
"lang_this_180" => $lang['this_180'],
      
"lang_this_year" => $lang['this_year'],
      
"lang_ever" => $lang['ever'],
      
"lang_older" => $lang['older'],
      
"lang_newer" => $lang['newer'],
      
"lang_do_search" => $lang['do_search'],
      
"lang_in_posts" => $lang['in_posts'],
      
"lang_in_topics" => $lang['in_topics'],
      
"lang_result_type" => $lang['result_type'],
      
"lang_results_topics" => $lang['results_topics'],
      
"lang_results_post" => $lang['results_post'],
      
"lang_sort_results" => $lang['sort_results'],
      
"lang_last_date" => $lang['last_date'],
      
"lang_number_topics" => $lang['number_topics'],
      
"lang_poster_name" => $lang['poster_name'],
      
"lang_data_name" => $lang['data_name'],
      
"lang_descending_order" => $lang['descending_order'],
      
"lang_ascending_order" => $lang['ascending_order'],
      
"checked_articles" => $checked_articles,
      
"checked_images" => $checked_images,
      
"checked_links" => $checked_links,
      
"checked_files" => $checked_files,
      
"checked_forums" => $checked_forums
    
));

}
//end showform


2- Open templates/default/search.html
and find (line 39)
CODE

<table class='row1' border="0" cellpadding="4" cellspacing="2" width="100%">
<tr>
<td width="33%" valign="top" align="center"><input type='checkbox' name='inarticles' id='in_articles' value='1' class="checkbox" checked="checked"/> <label for="in_articles"><b>{lang_src_articles}</b></label>
<br>{html_articles}</td>
<td width="34%" valign="top" align="center"><input type='checkbox' name='ingallery' id='in_gallery' value='1' class="checkbox" checked="checked"/> <label for="in_gallery"><b>{lang_src_gallery}</b></label>
<br>{html_gallery}</td>
<td width="33%" valign="top" align="center"><input type='checkbox' name='inlinks' id='in_links' value='1' class="checkbox" checked="checked"/> <label for="in_links"><b>{lang_src_links}</b></label>
<br>{html_links}</td>
</tr>
<tr>
<td width="33%" valign="top" align="center">
<input type='checkbox' name='infiles' id='in_files' value='1' class="checkbox" checked="checked"/> <label for="in_files"><b>{lang_src_files}</b></label>
<br>{html_files}<br>
</td>
<td width="33%" valign="top" align="center">
<input type='checkbox' name='inforums' id='in_forums' value='1' class="checkbox" checked="checked"/> <label for="in_forums"><b>{lang_src_forums}</b></label>
<br>{html_forums}<br>
<div align="left"><input type='checkbox' name='searchsubs' value='1' id="searchsubs" checked="checked" /> <label for="searchsubs">{lang_search_in_subs}</label></div>
</td>
<td width="34%" valign="top">
<input type='checkbox' name='inevents' id='in_events' value='1' class="checkbox" checked="checked"/> <label for="in_events"><b>{lang_search_events}</b></label><br>
<input type='checkbox' name='instaticpages' id='in_staticpages' value='1' class="checkbox" checked="checked"/> <label for="in_staticpages"><b>{lang_src_staticpages}</b></label><br>
<input type='checkbox' name='incomments' id='in_comments' value='1' class="checkbox" checked="checked"/> <label for="in_comments"><b>{lang_src_comments}</b></label>
</td>
</tr>
</table>

replace:
CODE

<table class='row1' border="0" cellpadding="4" cellspacing="2" width="100%">
<tr>
<td width="33%" valign="top" align="center"><input type='checkbox' name='inarticles' id='in_articles' value='1' class="checkbox" {checked_articles}/> <label for="in_articles"><b>{lang_src_articles}</b></label>
<br>{html_articles}</td>
<td width="34%" valign="top" align="center"><input type='checkbox' name='ingallery' id='in_gallery' value='1' class="checkbox" {checked_images}/> <label for="in_gallery"><b>{lang_src_gallery}</b></label>
<br>{html_gallery}</td>
<td width="33%" valign="top" align="center"><input type='checkbox' name='inlinks' id='in_links' value='1' class="checkbox" {checked_links}/> <label for="in_links"><b>{lang_src_links}</b></label>
<br>{html_links}</td>
</tr>
<tr>
<td width="33%" valign="top" align="center">
<input type='checkbox' name='infiles' id='in_files' value='1' class="checkbox" {checked_files}/> <label for="in_files"><b>{lang_src_files}</b></label>
<br>{html_files}<br>
</td>
<td width="33%" valign="top" align="center">
<input type='checkbox' name='inforums' id='in_forums' value='1' class="checkbox" {checked_forums}/> <label for="in_forums"><b>{lang_src_forums}</b></label>
<br>{html_forums}<br>
<div align="left"><input type='checkbox' name='searchsubs' value='1' id="searchsubs" checked="checked" /> <label for="searchsubs">{lang_search_in_subs}</label></div>
</td>
<td width="34%" valign="top">
<input type='checkbox' name='inevents' id='in_events' value='1' class="checkbox" checked="checked"/> <label for="in_events"><b>{lang_search_events}</b></label><br>
<input type='checkbox' name='instaticpages' id='in_staticpages' value='1' class="checkbox" checked="checked"/> <label for="in_staticpages"><b>{lang_src_staticpages}</b></label><br>
<input type='checkbox' name='incomments' id='in_comments' value='1' class="checkbox" checked="checked"/> <label for="in_comments"><b>{lang_src_comments}</b></label>
</td>
</tr>
</table>

Offline zebaniz admin at seportal.org http://www.seportal.org
Top

Add Reply New Topic



Contribute | Forums | Gallery | Calendar | Links | Downloads | Members | Search | Guestbook | Article Directory

Powered by SePortal 2.5
Copyright © 2007-2010 SePortal.org