Opps, fixed parser errors
Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
parent
03d23838f5
commit
a8136898b4
|
@ -573,7 +573,7 @@ function GetProfileUsername($profile, $username, $compact = false, $getnetwork =
|
||||||
$gplus = preg_replace("=https?://plus.google.com/(.*)=ism", "$1@plus.google.com", $profile);
|
$gplus = preg_replace("=https?://plus.google.com/(.*)=ism", "$1@plus.google.com", $profile);
|
||||||
if ($gplus != $profile) {
|
if ($gplus != $profile) {
|
||||||
if ($getnetwork) {
|
if ($getnetwork) {
|
||||||
return NETWORK_GPLUS);
|
return NETWORK_GPLUS;
|
||||||
} elseif ($compact) {
|
} elseif ($compact) {
|
||||||
return ($gplususername . " (" . $username . ")");
|
return ($gplususername . " (" . $username . ")");
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -1169,7 +1169,7 @@ function item_body_set_hashtags(&$item) {
|
||||||
"#$2", $item["body"]);
|
"#$2", $item["body"]);
|
||||||
|
|
||||||
foreach ($tags as $tag) {
|
foreach ($tags as $tag) {
|
||||||
if ((strpos($tag, '#') !== 0) || (strpos($tag, '[url=')) {
|
if ((strpos($tag, '#') !== 0) || (strpos($tag, '[url='))) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2198,7 +2198,7 @@ function drop_item($id, $interactive = true) {
|
||||||
foreach ($r as $row) {
|
foreach ($r as $row) {
|
||||||
if ($parentid != "") {
|
if ($parentid != "") {
|
||||||
$parentid .= ", ";
|
$parentid .= ", ";
|
||||||
]
|
}
|
||||||
|
|
||||||
$parentid .= $row["id"];
|
$parentid .= $row["id"];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue