Add trailing text display to edit list widget types
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 13 Sep 2017 01:42:34 +0000 (01:42 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 13 Sep 2017 01:42:34 +0000 (01:42 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14720 7612ce4b-ef26-0410-bec9-ea0150e637f0

templates/default/edit_list_associative_widget.tpl
templates/default/edit_list_associative_widget_list_style.tpl
templates/default/edit_list_widget.tpl
templates/default/edit_list_widget_list_style.tpl

index e9196e551f2e4c768793bb1fe62451be09c8c331..4077ed76388deb3d107835b88a5358a1cae6e394 100644 (file)
@@ -84,6 +84,8 @@ if ($use_input_widget) {
     else
         echo $input_value_widget . '<br />';
 }
+if (!empty($trailing_text))
+    echo ($trailing_text_small ? '<small>' : '') . ($trailing_text_is_html ? $trailing_text : sm_encode_html_special_chars($trailing_text)) . ($trailing_text_small ? '</small>' : '') . '<br />';
 
 
 // Construct the select input showing all current values in the list
index 611604b3ae3d9651c05af4619b628f013dc51458..1d6b0e4168353dba47f6628ce89af7619adc2fb9 100644 (file)
@@ -85,6 +85,8 @@ if ($use_input_widget) {
     else
         echo $input_value_widget . '<br />';
 }
+if (!empty($trailing_text))
+    echo ($trailing_text_small ? '<small>' : '') . ($trailing_text_is_html ? $trailing_text : sm_encode_html_special_chars($trailing_text)) . ($trailing_text_small ? '</small>' : '') . '<br />';
 
 
 // Construct the select input showing all current values in the list
index 6fa46b3ffde2ac14b0bfe625586017bb3f07409b..4c2c01b2e56e0a8aa0a9942a1b994d449412d5ca 100644 (file)
@@ -38,6 +38,8 @@ extract($t);
 
 if ($use_input_widget) 
     echo _("Add") . '&nbsp;' . $input_widget . '<br />';
+if (!empty($trailing_text))
+    echo ($trailing_text_small ? '<small>' : '') . ($trailing_text_is_html ? $trailing_text : sm_encode_html_special_chars($trailing_text)) . ($trailing_text_small ? '</small>' : '') . '<br />';
 
 echo $select_widget;
 
index 2cbd655f6704b8d2f5421725363928b1149466c8..20baf881a239b715097a31bad1904ecfd4183ff1 100644 (file)
@@ -40,6 +40,8 @@ echo '<table class="table2" cellspacing="0"><tr><td>';
 
 if ($use_input_widget)
     echo _("Add") . '&nbsp;' . $input_widget . '<br />';
+if (!empty($trailing_text))
+    echo ($trailing_text_small ? '<small>' : '') . ($trailing_text_is_html ? $trailing_text : sm_encode_html_special_chars($trailing_text)) . ($trailing_text_small ? '</small>' : '') . '<br />';
 
 echo '<table class="table_messageList" cellspacing="0">';