|
|
21: deny of "not-crossconnections" does not work
|
|
Date: 2008/09/17 15:30
|
By: beat
|
Status: Admin
|
|
|
Karma: 256  
|
|
Admin  | Posts: 4214 |   | |
|
Something there since CB 1.1:
http://www.joomlapolis.com/component/option,com_joomlaboard/Itemid,38/func,view/catid,43/id,51035/
http://www.joomlapolis.com/component/option,com_joomlaboard/Itemid,38/func,view/catid,50/id,64230/
#64230
Fix is easy:
for bug "1" of that thread:
in comprofiler.class.php find:
| Code: | function denyConnection($userid,$connectionid)
|
and in it change:
| Code: |
...
if ($this->getConnectionDetails($userid, $connectionid) === false) {
...
$this->_deleteConnection($userid, $connectionid);
...
|
to:
| Code: |
...
if ($this->getConnectionDetails( $connectionid, $userid ) === false) {
...
$this->_deleteConnection( $connectionid, $userid );
...
|
(the arguments were the wrong way.... )
----
For bug "2" of the thread: see identified issue "22" here. Beat - Developer on Community Builder core Team - If you like CB and this forum, you will love Nick's CB 1.2 RC4 reference manual ! : Click here to Get it now  - Would like to help us move faster ? Get it, and/or help us spend more time coding by helping others in this forum, many thanks
|
|
The topic has been locked. |
|
|
|
Re:21: deny of "not-crossconnections" does not wor
|
|
Date: 2008/10/02 13:55
|
By: beat
|
Status: Admin
|
|
|
Karma: 256  
|
|
Admin  | Posts: 4214 |   | |
|
Thanks for reporting. 
This issue has been addressed and fixed in Community Builder 1.2 RC 3, like all other known issues, and is available now for a last short rounds of live site testings, before CB 1.2 Stable release. 
================= ISSUE FIXED ==================== Beat - Developer on Community Builder core Team - If you like CB and this forum, you will love Nick's CB 1.2 RC4 reference manual ! : Click here to Get it now  - Would like to help us move faster ? Get it, and/or help us spend more time coding by helping others in this forum, many thanks
|
|
The topic has been locked. |
|
|