Method code for $channel_ui._broadcast()

[Turn off line numbering]
  1: arg channel, message;
  2: var q;
  3: 
  4: if (!(caller() in [$channel_ui, $user, $sys, $guest]))
  5:     throw(~perm, "You are not allowed to call $channel_ui._broadcast() directly");
  6: for q in ($user_db.connected())
  7:     q.channel_msg(channel, message);

// Created 24-Jul-1996 as a part of ColdCore, see: @help Credit

Tlon