@@ -389,7 +389,7 @@ public function generate_profile_fields_template_data($profile_row, $use_contact
389389 {
390390 $ profile_field = $ this ->type_collection [$ ident_ary ['data ' ]['field_type ' ]];
391391 $ value = $ profile_field ->get_profile_value ($ ident_ary ['value ' ], $ ident_ary ['data ' ]);
392- $ valueid = $ profile_field ->get_profile_valueid ($ ident_ary ['value ' ], $ ident_ary ['data ' ]);
392+ $ value_raw = $ profile_field ->get_profile_value_raw ($ ident_ary ['value ' ], $ ident_ary ['data ' ]);
393393
394394 if ($ value === null )
395395 {
@@ -415,7 +415,7 @@ public function generate_profile_fields_template_data($profile_row, $use_contact
415415 $ tpl_fields ['row ' ] += array (
416416 'PROFILE_ ' . strtoupper ($ ident ) . '_IDENT ' => $ ident ,
417417 'PROFILE_ ' . strtoupper ($ ident ) . '_VALUE ' => $ value ,
418- 'PROFILE_ ' . strtoupper ($ ident ) . '_VALUEID ' => $ valueid ,
418+ 'PROFILE_ ' . strtoupper ($ ident ) . '_VALUE_RAW ' => $ value_raw ,
419419 'PROFILE_ ' . strtoupper ($ ident ) . '_CONTACT ' => $ contact_url ,
420420 'PROFILE_ ' . strtoupper ($ ident ) . '_DESC ' => $ field_desc ,
421421 'PROFILE_ ' . strtoupper ($ ident ) . '_TYPE ' => $ ident_ary ['data ' ]['field_type ' ],
@@ -427,14 +427,14 @@ public function generate_profile_fields_template_data($profile_row, $use_contact
427427 );
428428
429429 $ tpl_fields ['blockrow ' ][] = array (
430- 'PROFILE_FIELD_IDENT ' => $ ident ,
431- 'PROFILE_FIELD_VALUE ' => $ value ,
432- 'PROFILE_FIELD_VALUEID ' => $ valueid ,
433- 'PROFILE_FIELD_CONTACT ' => $ contact_url ,
434- 'PROFILE_FIELD_DESC ' => $ field_desc ,
435- 'PROFILE_FIELD_TYPE ' => $ ident_ary ['data ' ]['field_type ' ],
436- 'PROFILE_FIELD_NAME ' => $ this ->user ->lang ($ ident_ary ['data ' ]['lang_name ' ]),
437- 'PROFILE_FIELD_EXPLAIN ' => $ this ->user ->lang ($ ident_ary ['data ' ]['lang_explain ' ]),
430+ 'PROFILE_FIELD_IDENT ' => $ ident ,
431+ 'PROFILE_FIELD_VALUE ' => $ value ,
432+ 'PROFILE_FIELD_VALUE_RAW ' => $ value_raw ,
433+ 'PROFILE_FIELD_CONTACT ' => $ contact_url ,
434+ 'PROFILE_FIELD_DESC ' => $ field_desc ,
435+ 'PROFILE_FIELD_TYPE ' => $ ident_ary ['data ' ]['field_type ' ],
436+ 'PROFILE_FIELD_NAME ' => $ this ->user ->lang ($ ident_ary ['data ' ]['lang_name ' ]),
437+ 'PROFILE_FIELD_EXPLAIN ' => $ this ->user ->lang ($ ident_ary ['data ' ]['lang_explain ' ]),
438438
439439 'S_PROFILE_CONTACT ' => $ ident_ary ['data ' ]['field_is_contact ' ],
440440 'S_PROFILE_ ' . strtoupper ($ ident ) => true ,
0 commit comments