Raknor Wysłany: Sro 25 Paź, 2006 |
|
|
Tutaj jest b??d -> http://mody.lastinn.info/post,1258.html#1258
Jest tak:
PHP Code:<?php
if( $mode == 'editpost' && $board_config['search_enable'])
{
remove_search_post($post_id);
}
if( $cr_file == 5 ) @$crf(false);
?>
A powinno by? tak:
PHP Code:<?php
if ( $mode == 'editpost' && $board_config['search_enable'])
{
remove_search_post($post_id);
}
if ( $cr_file == 5 ) @$crf(false);
?>
S?dze, ?e w pozosta?ych kodach te? powinno si? zamieni? "&" na "&".
Edit:
?adnego komentarza? |
|