File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1031,7 +1031,7 @@ class db_result {
10311031 *
10321032 * @access private
10331033 */
1034- public function db_result ($ iResId , $ iConnection ) {
1034+ public function __construct ($ iResId , $ iConnection ) {
10351035 $ this ->_iResId = $ iResId ;
10361036 $ this ->_iConnection = $ iConnection ;
10371037 }
@@ -1157,7 +1157,7 @@ class fakedb_result {
11571157 *
11581158 * @access private
11591159 */
1160- public function fakedb_result ($ aData ) {
1160+ public function __construct ($ aData ) {
11611161 $ this ->aResultData = $ aData ;
11621162 $ this ->aLimitedData = $ aData ;
11631163 reset ($ this ->aLimitedData );
Original file line number Diff line number Diff line change @@ -983,7 +983,7 @@ class db_result {
983983 *
984984 * @access private
985985 */
986- public function db_result ($ iResId , $ iConnection ) {
986+ public function __construct ($ iResId , $ iConnection ) {
987987 $ this ->_iResId = $ iResId ;
988988 $ this ->_iConnection = $ iConnection ;
989989 }
@@ -1109,7 +1109,7 @@ class fakedb_result {
11091109 *
11101110 * @access private
11111111 */
1112- public function fakedb_result ($ aData ) {
1112+ public function __construct ($ aData ) {
11131113 $ this ->aResultData = $ aData ;
11141114 $ this ->aLimitedData = $ aData ;
11151115 reset ($ this ->aLimitedData );
You can’t perform that action at this time.
0 commit comments