Error Source
The first line number counts with includes, the second one in []-brackets counts the original template
|
171 [170]:
172 [171]: // returns true or false
173 [172]: function _pconnect($argHostname, $argUsername, $argPassword, $argDatabasename)
174 [173]: {
175 [174]: $this->_connectionID = mysql_pconnect($argHostname,$argUsername,$argPassword);
176 [175]: if ($this->_connectionID === false) return false;
177 [176]: if ($this->autoRollback) $this->RollbackTrans();
178 [177]: if ($argDatabasename) return $this->SelectDB($argDatabasename);
179 [178]: return true;
|