Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1049 → Rev 1050

/trunk/plugins/viathinksoft/database/sqlite3/OIDplusQueryResultSQLite3.class.php
17,7 → 17,7
* limitations under the License.
*/
 
if (!defined('INSIDE_OIDPLUS')) die();
namespace ViaThinkSoft\OIDplus;
 
class OIDplusQueryResultSQLite3 extends OIDplusQueryResult {
protected $no_resultset;
82,10 → 82,10
$ary = $this->fetch_array();
if (!$ary) return null;
 
$obj = new stdClass;
$obj = new \stdClass;
foreach ($ary as $name => $val) {
$obj->$name = $val;
}
return $obj;
}
}
}