Oracle treats the empty string as a NULL and so fails the NOT NULL requirement.
$url defaults to the empty string and so hits this problem.
$info also had this problem but was fixed in revision 1.348
add_to_log just needs a similar fix for $url, i.e.
if ($CFG->type = 'oci8po') {
if (empty($info)) {
$info = ' ';
}
+ if (empty($url)) {
+ $url = ' ';
+ }
}
Description
Oracle treats the empty string as a NULL and so fails the NOT NULL requirement.
$url defaults to the empty string and so hits this problem.
$info also had this problem but was fixed in
revision 1.348
add_to_log just needs a similar fix for $url, i.e.
if ($CFG->type = 'oci8po') {
if (empty($info)) {
$info = ' ';
}
+ if (empty($url)) {
+ $url = ' ';
+ }
}
Eloy Lafuente (stronk7) added a comment - 31/Oct/09 01:08 AM Resolving as fixed, now all versions from 1.7 to 2.0 are handling empty $info and $url properly.
Thanks for the report and ciao
All content on this web site is made available under the GNU General Public License, unless otherwise stated.
Thanks for the report and ciao