Part of the EllisLab Network
   
 
Issue, in the file system\database\DB_utility.php
Posted: 31 October 2008 11:48 PM   [ Ignore ]  
Summer Student
Avatar
Total Posts:  14
Joined  02-02-2007

I have noticed a issue, in the file system\database\DB_utility.php

The line @ line number 178 is like the following:

if ( ! is_object($query) OR ! method_exists($query'field_names')) 

And i think it should be

if ( ! is_object($query) OR ! method_exists($query'list_fields')) 

as the “field_names” method is DEPRECATED.

Profile
 
 
Posted: 02 January 2009 06:22 AM   [ Ignore ]   [ # 1 ]  
Summer Student
Avatar
Total Posts:  6
Joined  08-04-2007

You are right, thanks!

Profile
 
 
Posted: 16 February 2009 11:19 AM   [ Ignore ]   [ # 2 ]  
Summer Student
Avatar
Total Posts:  14
Joined  10-02-2008

The same goes for line 220 in the same file.

Profile
 
 
Posted: 16 February 2009 01:33 PM   [ Ignore ]   [ # 3 ]  
Lab Technician
Avatar
RankRankRankRank
Total Posts:  1089
Joined  05-17-2008

I submitted a bug report.

Profile
 
 
Posted: 02 January 2010 03:53 PM   [ Ignore ]   [ # 4 ]  
Summer Student
Total Posts:  1
Joined  11-23-2009

I ran into this problem also and thanks to the previous posts solved it quickly grin Thanks so much !

I am new to CodeIgniter - so forgive me if this is common knowledge.  Is this fix going to get rolled into a release ?  Can I subscribe to the bug report?

Profile