- Moved old libraries to CI

- Bugfixes
This commit is contained in:
paolo
2016-06-10 18:09:54 +02:00
parent d237915e80
commit ffa0bdc947
5 changed files with 18 additions and 7 deletions
+6 -1
View File
@@ -1,7 +1,12 @@
<?php
trait db_extra
{
protected $db_result=null;
/*
* Moved to private to avoid to violate "Strict standards"
* This property must be used only in the methods of this trait
* and access to it should only be done through the methods of this trait
*/
private $db_result = null;
public function db_query($sql)
{