AW: [imp] undefined function: fetchrow
Yohann Fourteau
yohann.fourteau@shom.fr
Wed, 28 Feb 2001 13:19:06 +0100
Jan Schneider wrote:
>
> > > I'm using the latest cvs sources of horde, imp and pear.
> > > pear and the necessary classes are correctly recognized (according to
> > > horde/test.php), but I still get the message after login:
> > >
> > > Fatal error: Call to undefined function: fetchrow() in
> > > /usr/local/httpd/htdocs/horde/imp/../lib/Prefs/sql.php on line 154
> > >
> > > Any hints?
Another change is the structure of sql table :
CREATE TABLE user_webmail_prefs (
uid varchar(32) NOT NULL,
scope varchar(16) NOT NULL, <========= NEW
pref_name varchar(32) NOT NULL,
pref_value text,
PRIMARY KEY (uid, pref_name, scope)
);
--
Yohann F.