Нигде на нашел его для phpbb 2.x, сам php и html незнаю. Вот какие коды есть (вроде файл верный, если нет, подскажите в каком искать) function prepare_bbcode_template($bbcode_tpl) { ... $bbcode_tpl['img'] = str_replace('{URL}', '\\1', $bbcode_tpl['img']); $bbcode_tpl['align_open'] = str_replace('{ALIGN}', '\\1', $bbcode_tpl['align_open']); ... } function bbencode_second_pass($text, $uid) { ... // code.. // This one gets first-passed.. $patterns[] = "#\#i"; $replacements[] = $bbcode_tpl['img']; $patterns[] = "#\[imgreflect]([^?](?:[^\[]+|\[(?!url))*?)\[/imgreflect]#i"; $replacements[] = $bbcode_tpl['imgreflect']; // Formatted Image code.. $patterns[] = "#\([^?](?:[^\[]+|\[(?!url))*?)\#i"; $replacements[] = $bbcode_tpl['img']; // [align=left/center/right/justify]Formatted Code[/align] code.. $text = preg_replace("/\[align=(left|right|center|justify)]/si", $bbcode_tpl['align_open'], $text); $text = str_replace("[/align]", $bbcode_tpl['align_close'], $text); ... } // bbencode_second_pass() function make_bbcode_uid() { ... // code.. $text = preg_replace("#\[img\]((http|ftp|https|ftps)://)([^ \?&=\#\"\n\r\t<]*?(\.(jpg|jpeg|gif|png)))\[/img\]#sie", "''", $text); // Formatted Image code.. $text = preg_replace("#\((http|ftp|https|ftps)://)([^ \?&=\#\"\n\r\t<]*?(\.(jpg|jpeg|gif|png)))\[/img\]#sie", "'[align=\\1]\\2[/align]'", $text); // [align=left/center/right/justify]Formatted Code[/align] code.. $text = preg_replace("#\[align=(left|right|center|justify)\](.*?)\[/align\]#si", "[align=\\1]\\2[/align]", $text); } // bbencode_first_pass() Выделенное курсивом писал сам, оно естесственно неправильно. Думаю что тег основан на смеси img и align'а, от этого и отталкивался. В сообщении написано [img=http://ftp.burnet.ru/incoming/users/torrent/626/lodapic13se1.jpg] В свойствах картинки адрес http://сайт/righthttp То, что картинка справа, уже хорошо)