Index: trunk/phase3/includes/db/DatabaseOracle.php |
— | — | @@ -243,11 +243,13 @@ |
244 | 244 | } |
245 | 245 | |
246 | 246 | $session_mode = $this->mFlags & DBO_SYSDBA ? OCI_SYSDBA : OCI_DEFAULT; |
| 247 | + wfSuppressWarnings(); |
247 | 248 | if ( $this->mFlags & DBO_DEFAULT ) { |
248 | | - $this->mConn = @oci_new_connect( $this->mUser, $this->mPassword, $this->mServer, $this->defaultCharset, $session_mode ); |
| 249 | + $this->mConn = oci_new_connect( $this->mUser, $this->mPassword, $this->mServer, $this->defaultCharset, $session_mode ); |
249 | 250 | } else { |
250 | | - $this->mConn = @oci_connect( $this->mUser, $this->mPassword, $this->mServer, $this->defaultCharset, $session_mode ); |
| 251 | + $this->mConn = oci_connect( $this->mUser, $this->mPassword, $this->mServer, $this->defaultCharset, $session_mode ); |
251 | 252 | } |
| 253 | + wfRestoreWarnings(); |
252 | 254 | |
253 | 255 | if ( $this->mUser != $this->mDBname ) { |
254 | 256 | //change current schema in session |