From: thepurpleblob Date: Fri, 20 Mar 2009 11:36:17 +0000 (+0000) Subject: MDL-18542: X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=6bfa3f3ecfe810765c922d0313871161d745d5fe;p=moodle.git MDL-18542: Aaargh... yet another one missed. Hopefully that's it. Merged from STABLE_19 --- diff --git a/mod/data/field/file/field.class.php b/mod/data/field/file/field.class.php index bb58c0c799..8711872d0a 100755 --- a/mod/data/field/file/field.class.php +++ b/mod/data/field/file/field.class.php @@ -67,6 +67,12 @@ class data_field_file extends data_field_base { return $str; } + function list_add_field(&$fields) { + $fields[] = $this->field->id.'_filename'; + $fields[] = $this->field->id.'_file'; + return true; + } + function display_search_field($value = '') { return ''; }