[Phplib-users] code change 7.4-pre2 ?
Brought to you by:
nhruby,
richardarcher
From: Dennis G. <ge...@cv...> - 2003-03-06 18:29:06
|
shouldn't this: line 288 'db_odbc.inc' ---------------------- if ($this->Debug && !$got_lock) { echo "missed lock... bug!\n"; } else { echo "got lock\n"; flush(); } be: ---------------------- if ($this->Debug){ if(!$got_lock) { echo "missed lock... bug!\n"; } else { echo "got lock\n"; flush(); } } Because there would an output for got lock even if there is not set $this->Debug, right? |