|
@@ 2126-2127 (lines=2) @@
|
| 2123 |
|
}//end if |
| 2124 |
|
}//end if |
| 2125 |
|
|
| 2126 |
|
if ( isset( $attributes['custom_save'] ) && false !== $attributes['custom_save'] && is_callable( $attributes['custom_save'] ) ) { |
| 2127 |
|
$value = call_user_func_array( |
| 2128 |
|
$attributes['custom_save'], array( |
| 2129 |
|
$value, |
| 2130 |
|
$field, |
|
@@ 4756-4757 (lines=2) @@
|
| 4753 |
|
|
| 4754 |
|
$value = $this->get_field( $field_name ); |
| 4755 |
|
|
| 4756 |
|
if ( isset( $tag[1] ) && ! empty( $tag[1] ) && is_callable( $tag[1] ) ) { |
| 4757 |
|
$value = call_user_func_array( $tag[1], array( $value, $field_name, $this->row, &$this ) ); |
| 4758 |
|
} |
| 4759 |
|
|
| 4760 |
|
$before = $after = ''; |