diff options
Diffstat (limited to 'include/text.php')
-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 eba0f5859..61c7e6389 100644 --- a/include/text.php +++ b/include/text.php @@ -1665,10 +1665,10 @@ function check_webbie($arr) { } } if(strlen($str)) { - $r = q("select entity_address from entity where entity_address in ( $str ) "); + $r = q("select channel_address from channel where channel_address in ( $str ) "); if(count($r)) { foreach($r as $rr) { - $taken[] = $rr['entity_address']; + $taken[] = $rr['channel_address']; } } foreach($arr as $x) { |