Active
Project:
Chatroom
Version:
6.x-2.x-dev
Component:
User interface
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
25 Aug 2011 at 14:14 UTC
Updated:
20 Oct 2012 at 11:36 UTC
Hello,
could you make a little test please?
After having put the active chat and the active chatroom blocks to the left sidebar, these blocks don't appear.
Can you confirm that for you this feature works without problems?
It is very important to show which chats are active.
Let me know if this is only a strange problem of mine.
Comments
Comment #1
drein commentedgrrr quite angry!
it is seems a duplicate of:
http://drupal.org/node/359750
but it was fixed, instead I can't see block working.
The "help desk" block instead work, but I don't use helpdesk.
have you changed something in the dev version?
thanks.
Comment #2
drein commentedComment #3
Olivier.b commentedsame issue there,
my active chats block disappeared after a module update and i didn't find any way to get it back, actual version is 6.x-2.18, with a drupal 6.22 installation.
Comment #4
Steel Rat commentedI just installed Chat Room for D6 yesterday (latest version of both) and I can confirm that the blocks are not appearing at all.
Comment #5
vsalvans commentedsubscribe
Comment #6
vsalvans commentedI could make it working by changing the following line in chatroom.module file:
767 : $block_name = $delta === 0 ? 'chats' : ($delta === 1 ? 'chatrooms' : $delta);to this
767 : $block_name = $delta == 0 ? 'chats' : ($delta == 1 ? 'chatrooms' : $delta);Sorry for no providing a valid patch file but I'm not using svn or git.
Hope it helps!
Comment #7
vsalvans commentedComment #8
magpie5212 commentedConfirming that this fix works for me.