[PHPLIB-DEV] cvs commit From: ssilk (phplib-dev <email protected>)
Date: 02/01/00

From: ssilk
Date: Wed Feb 2 03:32:39 2000
Modified files:
      php-lib/php/db_mysql.inc

Log message:
Bugfix: p_nextid instead of nextid
--- how many bugs like this will remain? (neverending p_-error? :-)

Index: php-lib/php/db_mysql.inc
diff -u php-lib/php/db_mysql.inc:1.27 php-lib/php/db_mysql.inc:1.28
--- php-lib/php/db_mysql.inc:1.27 Tue Jan 25 14:07:39 2000
+++ php-lib/php/db_mysql.inc Wed Feb 2 03:32:08 2000
@@ -5,7 +5,7 @@
  * Copyright (c) 1998,1999 NetUSE GmbH
  * Boris Erdmann, Kristian Koehntopp
  *
- * $Id: db_mysql.inc,v 1.27 2000/01/25 13:07:39 kk Exp $
+ * $Id: db_mysql.inc,v 1.28 2000/02/02 02:32:08 ssilk Exp $
  *
  */
 
@@ -251,7 +251,7 @@
                  $currentid);
         $id =  <email protected>($q, $this->Link_ID);
       } else {
- $currentid = $res["nextid"];
+ $currentid = $res["p_nextid"];
       }
       $nextid = $currentid + 1;
       $q = sprintf("update %s set p_nextid = '%s' where p_seq_name = '%s'",

-
PHPLIB Developers Mailing List. Send messages to <phplib-dev <email protected>>.
To unsubscribe, send "unsubscribe" to <phplib-dev-request <email protected>> in
the body, not the subject, of your message.