Show
Ignore:
Timestamp:
08/25/06 09:56:48 (6 years ago)
Author:
john
Message:

Converted AR to use MDB2 - DB is now deprecated

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/trax/vendor/trax/action_view/helpers/active_record_helper.php

    r242 r250  
    466466     *  @uses attribute_name 
    467467     *  @uses object() 
    468      *  @uses ActiveRecord::column_for_attribute() 
     468     *  @uses ActiveRecord::column_type() 
    469469     */ 
    470470    function column_type() { 
    471         $column = $this->object()->column_for_attribute($this->attribute_name); 
    472         return $column['type']; 
     471        return $this->object()->column_type($this->attribute_name); 
    473472    } 
    474473