# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: /home/dzolo/Projects/FreenetIS/freenetis-stable # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: application/helpers/callback.php --- application/helpers/callback.php Base (BASE) +++ application/helpers/callback.php Locally Modified (Based On LOCAL) @@ -1472,7 +1472,14 @@ */ public static function member_type_field ($item, $name) { - echo Member_Model::get_type($item->$name); + if (property_exists($item, 'type_name')) + { + echo $item->type_name; + } + else + { + echo Member_Model::get_type($item->$name); + } // redirection flag if (property_exists($item, 'interrupt') && $item->interrupt) {