436e85a2 by Jeff Balicki

ee

1 parent 30032e7d
...@@ -158,14 +158,13 @@ function print_user_notices($showOnlyUnread = false) ...@@ -158,14 +158,13 @@ function print_user_notices($showOnlyUnread = false)
158 } 158 }
159 159
160 $rows .= '<tr style="margin-bottom:10px;" class="notice-row" id="' . $index . '">'; 160 $rows .= '<tr style="margin-bottom:10px;" class="notice-row" id="' . $index . '">';
161 $rows .= '<td class="notice-image"><a href="javascript:;" class="notice ' 161 $rows .= '<td class="notice-image"><img src="/wp-content/themes/cbv/assets/images/new/Icon_Archive.svg" style="width: 25px; height: 25px;"></td>';
162 . '"><img src="/wp-content/themes/cbv/assets/images/new/Icon_Archive.svg" style="width: 25px; height: 25px;"></a></td>';
163 162
164 if ($system['system_message_type'] == 'none') { 163 if ($system['system_message_type'] == 'none') {
165 $system['system_message_type'] = 'notice'; 164 $system['system_message_type'] = 'notice';
166 } 165 }
167 166
168 $rows .= '<td class="notice-content"><img class="notice-icon-mobile" src="/wp-content/themes/cbv/assets/images/new/Icon_Archive.svg" style="width: 25px; height: 25px;">' . nl2br($content) . '</td><td class="notice-date">' 167 $rows .= '<td class="notice-content"><img class="notice-icon-mobile" src="/wp-content/themes/cbv/assets/images/new/Icon_Archive.svg" style="width: 25px; height: 25px;"><div class="notice-content-text">' . nl2br($content) . '</div></td><td class="notice-date">'
169 168
170 . CBV\tz_display('notice_sent_date', $notice['sent_date']) . '</span></td>'; 169 . CBV\tz_display('notice_sent_date', $notice['sent_date']) . '</span></td>';
171 $rows .= '<td style="vertical-align: middle; width:10%;padding: 5px 0px 5px 0px;" style="vertical-align: middle;"><span>' 170 $rows .= '<td style="vertical-align: middle; width:10%;padding: 5px 0px 5px 0px;" style="vertical-align: middle;"><span>'
......