Cleanup for #3010 - added spaces, thanks to @annando .

Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2016-12-14 09:42:36 +01:00
commit a905522eb5
36 changed files with 143 additions and 143 deletions

View file

@ -491,7 +491,7 @@ function item_new_uri($hostname,$uid, $guid = "") {
$r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
dbesc($uri));
if(dbm::is_result($r))
if (dbm::is_result($r))
$dups = true;
} while($dups == true);
return $uri;
@ -515,7 +515,7 @@ function photo_new_resource() {
$r = q("SELECT `id` FROM `photo` WHERE `resource-id` = '%s' LIMIT 1",
dbesc($resource)
);
if(dbm::is_result($r))
if (dbm::is_result($r))
$found = true;
} while($found == true);
return $resource;
@ -882,7 +882,7 @@ function contact_block() {
dbesc(NETWORK_OSTATUS),
dbesc(NETWORK_DIASPORA)
);
if(dbm::is_result($r)) {
if (dbm::is_result($r)) {
$total = intval($r[0]['total']);
}
if(! $total) {
@ -901,7 +901,7 @@ function contact_block() {
dbesc(NETWORK_DIASPORA),
intval($shown)
);
if(dbm::is_result($r)) {
if (dbm::is_result($r)) {
$contacts = "";
foreach ($r AS $contact)
$contacts[] = $contact["id"];
@ -909,7 +909,7 @@ function contact_block() {
$r = q("SELECT `id`, `uid`, `addr`, `url`, `name`, `thumb`, `network` FROM `contact` WHERE `id` IN (%s)",
dbesc(implode(",", $contacts)));
if(dbm::is_result($r)) {
if (dbm::is_result($r)) {
$contacts = sprintf( tt('%d Contact','%d Contacts', $total),$total);
$micropro = Array();
foreach($r as $rr) {
@ -1932,7 +1932,7 @@ function file_tag_update_pconfig($uid,$file_old,$file_new,$type = 'file') {
// intval($uid)
//);
if(dbm::is_result($r)) {
if (dbm::is_result($r)) {
unset($deleted_tags[$key]);
}
else {
@ -1962,7 +1962,7 @@ function file_tag_save_file($uid,$item,$file) {
intval($item),
intval($uid)
);
if(dbm::is_result($r)) {
if (dbm::is_result($r)) {
if(! stristr($r[0]['file'],'[' . file_tag_encode($file) . ']'))
q("UPDATE `item` SET `file` = '%s' WHERE `id` = %d AND `uid` = %d",
dbesc($r[0]['file'] . '[' . file_tag_encode($file) . ']'),