missed some images, table border property
This commit is contained in:
parent
043bde42a6
commit
e6086e2363
BIN
images/friendika-48.png
Normal file
BIN
images/friendika-48.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
BIN
images/friendika-96.png
Normal file
BIN
images/friendika-96.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.4 KiB |
|
@ -78,6 +78,10 @@ function bbcode($Text,$preserve_nl = false) {
|
|||
$Text = preg_replace("/\[td\](.*?)\[\/td\]/s", '<td>$1</td>' ,$Text);
|
||||
$Text = preg_replace("/\[tr\](.*?)\[\/tr\]/s", '<tr>$1</tr>' ,$Text);
|
||||
$Text = preg_replace("/\[table\](.*?)\[\/table\]/s", '<table>$1</table>' ,$Text);
|
||||
|
||||
$Text = preg_replace("/\[table border=1\](.*?)\[\/table\]/s", '<table border="1" >$1</table>' ,$Text);
|
||||
$Text = preg_replace("/\[table border=0\](.*?)\[\/table\]/s", '<table border="0" >$1</table>' ,$Text);
|
||||
|
||||
|
||||
// $Text = str_replace("[*]", "<li>", $Text);
|
||||
|
||||
|
|
Loading…
Reference in a new issue