Merge pull request #1357 from annando/1502-html-poco-2

html to bbcode convertion in poco - 2nd try
This commit is contained in:
fabrixxm 2015-02-05 11:21:23 +01:00
commit aa720eb277
1 changed files with 4 additions and 1 deletions

View File

@ -20,6 +20,9 @@ require_once('include/datetime.php');
function poco_load($cid,$uid = 0,$zcid = 0,$url = null) {
require_once("include/html2bbcode.php");
$a = get_app();
if($cid) {
@ -107,7 +110,7 @@ function poco_load($cid,$uid = 0,$zcid = 0,$url = null) {
$location = $entry->currentLocation;
if(isset($entry->aboutMe))
$about = $entry->aboutMe;
$about = html2bbcode($entry->aboutMe);
if(isset($entry->gender))
$gender = $entry->gender;