소스 검색

! change the selected smiley set indicator to an icon instead of a *

Signed-off-by: Spuds <[email protected]>
Spuds 12 년 전
부모
커밋
da1ec7c6af
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      Sources/ManageSmileys.php

+ 2 - 1
Sources/ManageSmileys.php

@@ -387,7 +387,8 @@ function EditSmileySets()
 				),
 				'data' => array(
 					'function' => create_function('$rowData', '
-						return $rowData[\'selected\'] ? \'<strong>*</strong>\' : \'\';
+						global $settings;
+						return $rowData[\'selected\'] ? \'<img src="\' . $settings[\'images_url\'] . \'/icons/field_valid.png" alt="*" class="icon" />\' : \'\';
 					'),
 					'style' => 'text-align: center;',
 				),