Hello Robert,
On Sunday, February 09, 2003, robert wrote...


> I was able to store the addresses into mysql database
> by reading the /doc about database back end.
> It was working great.

> Then I tried installing the plugin "address group plugin" and got
> this error below when I got to the plugin menu
> on SM using a browser.  I am using SM 1.2.10.


> Fatal error: Call to undefined function: iswarning() in
> /home/httpd/html/webmail/plugins/abook_group/abook_group_database.php on
> line 102

  I think iswarning() was removed from PEAR a little while back.  This
  means if you look at the code, find out where that line appears.  If
  it looks something like this:

    if (DB::isError($dbh) || DB::isWarning($dbh)) {

  Change it to just this:

    if (DB::isError($dbh)) {

  Hope that helps. I've not looked at the plugin, so I couldn't say.
  Of course, if it doesn't have the isError part to it, you might want
  to just change isWarning to isError.

-- 
Jonathan Angliss
([EMAIL PROTECTED])



-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Reply via email to