|
|
Re:uddeIM 1.1 released
|
|
Date: 2008/04/07 02:05
|
By: scubaguy
|
Status: User
|
|
|
Karma: 20  
|
|
Expert Joomlapolitan  | Posts: 116 |   | |
|
using Joomla 1.5.2, Uddeim 1.1, and CB 1.2 I get the following error when I try to delete a user from the CB user manager.
Parse error: syntax error, unexpected T_OBJECT_OPERATOR, expecting ')' in /home/myname/wwwroot/mysite.com/components/com_uddeim/cb_extra.php on line 19
That line is...
function user_delete_ext($user->id,$pmsUserDeleteOption) {
any ideas on what might be wrong? I'm stumped at the moment. CB 3rd Party Developer Web Geek Cafe - development and training http://www.webgeekcafe.org YourTribe.com - group social events - http://www.yourtribe.com
|
|
The administrator has disabled public write access. |
|
|
|
Re:uddeIM 1.1 released
|
|
Date: 2008/04/07 08:52
|
By: slabbi
|
Status:
|
|
|
Karma: 69  
|
|
Moderator  | Posts: 1149 |   | |
|
scubaguy wrote:
Parse error: syntax error, unexpected T_OBJECT_OPERATOR, expecting ')' in /home/myname/wwwroot/mysite.com/components/com_uddeim/cb_extra.php on line 19
That line is...
function user_delete_ext($user->id,$pmsUserDeleteOption) {
Damn, the first bug  Only appears with CB1.2 since a new plugin uses cb_extra.php.
Please remove "->", so the corrected line is
| Code: | function user_delete_ext($userid,$pmsUserDeleteOption) {
|
Fixed this in the package. I will release a hotfix for that when CB 1.2 is released.
Post edited by: slabbi, at: 2008/04/07 08:59 uddeIM Development CB Language Workgroup CB 3rd Party Developer
|
|
The administrator has disabled public write access. |
|
|
|
Re:uddeIM 1.1 released
|
|
Date: 2008/04/09 17:06
|
By: orion1024
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 4 |   | |
|
Hello again,
I found a bug which will keep from configuring Contact lists, but only when Joomla is not installed in the root but in a subfolder.
In userlists.php, in function uddeIMcreateLists, variable $pathtosite is used but not actually defined in the scope.
I corrected it by adding the following :
| Code: | function uddeIMcreateLists($myself, $item_id, $listid, $limit, $limitstart, $config) {
global $database;
// modification to make it work.
global $pathtosite;
// end of modification
|
Post edited by: orion1024, at: 2008/04/09 17:08
Post edited by: orion1024, at: 2008/04/09 17:09
|
|
The administrator has disabled public write access. |
|
|
|
Re:uddeIM 1.1 released
|
|
Date: 2008/04/09 17:42
|
By: slabbi
|
Status:
|
|
|
Karma: 69  
|
|
Moderator  | Posts: 1149 |   | |
|
Confirmed.
Fixed in 1.2 and in the current package.
I will add this file to the maintenance package I release end of this month. uddeIM Development CB Language Workgroup CB 3rd Party Developer
|
|
The administrator has disabled public write access. |
|
|
|
Re:uddeIM 1.1 released
|
|
Date: 2008/04/10 04:58
|
By: scubaguy
|
Status: User
|
|
|
Karma: 20  
|
|
Expert Joomlapolitan  | Posts: 116 |   | |
|
I found two more bugs in cb_extra.php
line 39 and 47 are missing each a "$" in "this->_setErrorMSG" it should be "$this->_setErrorMSG" CB 3rd Party Developer Web Geek Cafe - development and training http://www.webgeekcafe.org YourTribe.com - group social events - http://www.yourtribe.com
|
|
The administrator has disabled public write access. |
|
|
|
Re:uddeIM 1.1 released
|
|
Date: 2008/04/10 09:03
|
By: slabbi
|
Status:
|
|
|
Karma: 69  
|
|
Moderator  | Posts: 1149 |   | |
|
scubaguy wrote: I found two more bugs in cb_extra.php
line 39 and 47 are missing each a "$" in "this->_setErrorMSG" it should be "$this->_setErrorMSG"
Confirmed. Thanks godness that is a bug that does only appear when the SQL statement fails and then the database error is the bigger problem uddeIM Development CB Language Workgroup CB 3rd Party Developer
|
|
The administrator has disabled public write access. |
|
|