1

(60 replies, posted in PunBB 1.3 extensions)

This topic has been readed more than 13.000 times, so why PunBB team doesn't do nothing for this extension ?

2

(17 replies, posted in News)

Thanks Anatoly,

I complete my search with $_GET['p'] , ['p'] , $p = and didn't find nothing in my MODS so it's ok for me because I remember that I did the changes !is_numeric($_GET['p']) || when I updated my forum to 1.2.20

Thanks again...

3

(17 replies, posted in News)

Ok thanks,

With a little soft I did a search in my MODS's files and didn't find an $p variable, but maybe I do wrong... It's easy for me to search any word or line in any folder just with one clic so tell me if $p is enough or if I need to search something else... Thank you for your patience

P.S : the soft I use is free, helpfull and is named PRGrep

4

(17 replies, posted in News)

Anatoly wrote:

This bug cannot be used directly in PunBB 1.2, but can appear in mods using the page number set by PunBB: check your mods for the correct page number screening.

Hi,

I'm sorry but I don't understand what you mean by "page number set by PunBB"
I am using some MODS so what do I need to search and change into my files ? can you be more explicit please ?

Regards.

Problem fixed ...
I was wrong from the begining, it's not the good part of code...
Here is the good part

// START SUBST - <pun_title>
$tpl_main = str_replace('<pun_title>', '<div align="center"><h1><span>'.pun_htmlspecialchars($pun_config['o_board_title']).'</span></h1></div>', $tpl_main);
// END SUBST - <pun_title>


// START SUBST - <pun_desc>
$tpl_main = str_replace('<pun_desc>', '<p><span>'.$pun_config['o_board_desc'].'</span></p>', $tpl_main);
// END SUBST - <pun_desc>

Hi all,
I don't know if it's the good forum but I try here...
I have change my header.php to show two column but it's always looks like I didn't change nothing

the original part of code line 209 to 216

<div id="announce" class="block">
    <h2><span><?php echo $lang_common['Announcement'] ?></span></h2>
    <div class="box">
        <div class="inbox">
            <div><?php echo $pun_config['o_announcement_message'] ?></div>
        </div>
    </div>
</div>

the modifyed

<table width="100%" border="0" cellspacing="1" cellpadding="1">
  <tr>
    <td>
    <div id="announce" class="block">
      <h2><?php echo $lang_common['Announcement'] ?></h2>
    </div>
</td>

    <td>
    <div class="box">
           <div class="inbox">
            <div><?php echo $pun_config['o_announcement_message'] ?></div>
           </div>
       </div>
     </td>
  </tr>
</table>

what I get
http://img359.imageshack.us/img359/3061/sanstitre1vx4.jpg
http://img359.imageshack.us/img359/3061/sanstitre1vx4.e8a4409318.jpg

what I want
http://img204.imageshack.us/img204/7681/copiedesanstitre1yb9.jpg
http://img204.imageshack.us/img204/7681/copiedesanstitre1yb9.edbb13b8e6.jpg

Can you help me please ? Thank you