1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Fixes #4144 Extended-User type=radio value conversion fix.

This commit is contained in:
Cameron
2020-05-02 11:20:46 -07:00
parent 10d2fe5079
commit 76442d7272

View File

@@ -944,6 +944,8 @@ class e107_user_extended
foreach($choices as $choice)
{
$choice = trim($choice);
$choice = $tp->toHTML($choice);
if(strpos($choice,"|")!==FALSE)
{
list($val,$label) = explode("|",$choice);