Changeset 3045:76b8784271c4 for admin
- Timestamp:
- 07/05/15 15:04:33 (10 years ago)
- Branch:
- default
- Location:
- admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/blogs.php
r2819 r3045 189 189 } 190 190 191 $img_status = $rs->blog_status == 1 ? 'check-on' : 'check-off';191 $img_status = $rs->blog_status == 1 ? 'check-on' : ($rs->blog_status == 0 ? 'check-off' : 'check-wrn'); 192 192 $txt_status = $GLOBALS['core']->getBlogStatus($rs->blog_status); 193 193 $img_status = sprintf('<img src="images/%1$s.png" alt="%2$s" title="%2$s" />',$img_status,$txt_status); -
admin/users_actions.php
r3036 r3045 223 223 while ($rs->fetch()) 224 224 { 225 $img_status = $rs->blog_status == 1 ? 'check-on' : 'check-off';225 $img_status = $rs->blog_status == 1 ? 'check-on' : ($rs->blog_status == 0 ? 'check-off' : 'check-wrn'); 226 226 $txt_status = $core->getBlogStatus($rs->blog_status); 227 227 $img_status = sprintf('<img src="images/%1$s.png" alt="%2$s" title="%2$s" />',$img_status,$txt_status);
Note: See TracChangeset
for help on using the changeset viewer.