|
@@ 1412-1413 (lines=2) @@
|
| 1409 |
|
{ |
| 1410 |
|
$return = '<p class="centertext bold_text">'. $rowData['field_order'] .'<br>'; |
| 1411 |
|
|
| 1412 |
|
if ($rowData['field_order'] > 1) |
| 1413 |
|
$return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=up"><span class="toggle_up" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_up'] .'"></span></a>'; |
| 1414 |
|
|
| 1415 |
|
if ($rowData['field_order'] < $context['custFieldsMaxOrder']) |
| 1416 |
|
$return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=down"><span class="toggle_down" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_down'] .'"></span></a>'; |
|
@@ 1415-1416 (lines=2) @@
|
| 1412 |
|
if ($rowData['field_order'] > 1) |
| 1413 |
|
$return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=up"><span class="toggle_up" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_up'] .'"></span></a>'; |
| 1414 |
|
|
| 1415 |
|
if ($rowData['field_order'] < $context['custFieldsMaxOrder']) |
| 1416 |
|
$return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=down"><span class="toggle_down" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_down'] .'"></span></a>'; |
| 1417 |
|
|
| 1418 |
|
$return .= '</p>'; |
| 1419 |
|
|