1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 01:25:01 +02:00

Experimental "code" data format added to adminUI. PHP Notice removal.

This commit is contained in:
Cameron
2016-11-04 17:49:22 -07:00
parent 403fcf5421
commit 160d8522b0
3 changed files with 10 additions and 1 deletions

View File

@@ -2657,6 +2657,10 @@ class e_front_model extends e_model
return $tp->toDB($value);
break;
case 'code':
return $tp->toDB($value, false, false, 'pReFs');
break;
case 'float':
return $this->toNumber($value);
break;