Re: [PHP-DOC] [PATCH] several bug fix in livedocs

2004-05-09 Thread Nuno Lopes
> Hey Nuno, > > You're using sqlite_array_query() where you could just use > sqlite_single_query(): Done. > What exactly was the problem that you fixed in make_function_link, and > how did you fix it? make_function_link was a big confusion and slow. I've cleaned it up and I'm using just a DB qu

RE: [PHP-DOC] [PATCH] several bug fix in livedocs

2004-05-08 Thread Wez Furlong
Hey Nuno, You're using sqlite_array_query() where you could just use sqlite_single_query(): $value = sqlite_single_query($GLOBALS['fb_idx'], "select value from ents where entid="); ... $entities['&' . $ent . ';'] = $value; What exactly was the problem that you fixed in make_function_link, a