|
@@ 1404-1405 (lines=2) @@
|
| 1401 |
|
{ |
| 1402 |
|
$return = '<p class="centertext bold_text">'. $rowData['field_order'] .'<br>'; |
| 1403 |
|
|
| 1404 |
|
if ($rowData['field_order'] > 1) |
| 1405 |
|
$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>'; |
| 1406 |
|
|
| 1407 |
|
if ($rowData['field_order'] < $context['custFieldsMaxOrder']) |
| 1408 |
|
$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>'; |
|
@@ 1407-1408 (lines=2) @@
|
| 1404 |
|
if ($rowData['field_order'] > 1) |
| 1405 |
|
$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>'; |
| 1406 |
|
|
| 1407 |
|
if ($rowData['field_order'] < $context['custFieldsMaxOrder']) |
| 1408 |
|
$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>'; |
| 1409 |
|
|
| 1410 |
|
$return .= '</p>'; |
| 1411 |
|
|