diff options
author | zotlabs <mike@macgirvin.com> | 2018-05-23 02:33:46 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-05-23 02:33:46 -0700 |
commit | afb29176a4e301d4e4b247e0d28084e2936c8899 (patch) | |
tree | 18bd63eff1df5ad7e16b18a26431c4f93b6a1c09 | |
parent | 76d8e59e9b9fff557bb987e9f9621e5b6d8b7c0c (diff) | |
download | volse-hubzilla-afb29176a4e301d4e4b247e0d28084e2936c8899.tar.gz volse-hubzilla-afb29176a4e301d4e4b247e0d28084e2936c8899.tar.bz2 volse-hubzilla-afb29176a4e301d4e4b247e0d28084e2936c8899.zip |
deal with db failure gracefully
-rw-r--r-- | include/text.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/text.php b/include/text.php index aafba2168..34063cdd7 100644 --- a/include/text.php +++ b/include/text.php @@ -572,7 +572,7 @@ function item_message_id() { $r = q("SELECT id FROM item WHERE mid = '%s' LIMIT 1", dbesc($mid)); - if(count($r)) + if($r) $dups = true; } while($dups == true); @@ -593,7 +593,7 @@ function photo_new_resource() { $r = q("SELECT id FROM photo WHERE resource_id = '%s' LIMIT 1", dbesc($resource)); - if(count($r)) + if($r) $found = true; } while($found === true); |