Skip to content

Commit

Permalink
Fixes #1330 - Inline field type fix for 'number'
Browse files Browse the repository at this point in the history
  • Loading branch information
CaMer0n committed May 4, 2019
1 parent 95b336d commit 0e66396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e107_handlers/form_handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -4801,7 +4801,7 @@ function renderValue($field, $value, $attributes, $id = 0)

if(empty($attributes['noedit']) && !empty($parms['editable']) && empty($parms['link'])) // avoid bad markup, better solution coming up
{
$value = $this->renderInline($field,$id,$attributes['title'],$value, $value);
$value = $this->renderInline($field,$id,$attributes['title'],$value, $value, 'number');
}
elseif(!empty($parms['link']))
{
Expand Down

0 comments on commit 0e66396

Please sign in to comment.