Changeset 1574572
- Timestamp:
- 01/14/2017 11:30:55 AM (9 years ago)
- Location:
- wplingo/trunk
- Files:
-
- 3 edited
-
assets/css/lingo-frontend.css (modified) (2 diffs)
-
includes/admin-topic.php (modified) (8 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wplingo/trunk/assets/css/lingo-frontend.css
r1574110 r1574572 182 182 } 183 183 .lingo_button:hover { 184 background-color: # 1ea310;184 background-color: #39b54a; 185 185 color: #000; 186 186 } … … 887 887 888 888 .lingo-new-posts { 889 color: # 1ea310;889 color: #39b54a; 890 890 } 891 891 -
wplingo/trunk/includes/admin-topic.php
r1574110 r1574572 140 140 $select = ob_get_clean(); 141 141 142 echo esc_html($select);142 echo $select; 143 143 } 144 144 … … 231 231 <span class="lingo-admin-post-content"> 232 232 <?php $content = apply_filters('the_content', $child->post_content); ?> 233 <?php echo esc_html($content); ?>233 <?php echo $content; ?> 234 234 </span> 235 235 <span class="lingo-admin-edit-post-form" style="display: none;"> … … 262 262 263 263 if(is_edit_page('edit') && count($childs) > 0) { 264 echo esc_html($echo);264 echo $echo; 265 265 } else { 266 echo esc_html('<div class="lingo_new_post_wraper">');266 echo '<div class="lingo_new_post_wraper">'; 267 267 _e('There is no posts in this topic.', 'lingo'); 268 echo esc_html('</div>');268 echo '</div>'; 269 269 } 270 270 } … … 304 304 $echo = ob_get_clean(); 305 305 306 echo esc_html($echo);306 echo $echo; 307 307 } 308 308 … … 335 335 $echo = ob_get_clean(); 336 336 337 echo esc_html($echo);337 echo $echo; 338 338 } 339 339 } … … 629 629 switch ($column_name) { 630 630 case 'desc': 631 echo esc_html($p->post_excerpt);631 echo $p->post_excerpt; 632 632 break; 633 633 634 634 case 'topic': 635 echo esc_html($parent->post_title);635 echo $parent->post_title; 636 636 break; 637 637 638 638 case 'forum': 639 639 if($terms == null) { 640 echo esc_html('<span title="'.__('Topic without forum will be not visible in frontend!', 'lingo').'" class="dashicons dashicons-warning lingo-red"></span>');640 echo '<span title="'.__('Topic without forum will be not visible in frontend!', 'lingo').'" class="dashicons dashicons-warning lingo-red"></span>'; 641 641 } else { 642 echo esc_html($terms->name);642 echo $terms->name; 643 643 } 644 644 645 echo esc_html("<br/>".__('Posts', 'lingo').": " . count($childs));645 echo "<br/>".__('Posts', 'lingo').": " . count($childs); 646 646 break; 647 647 648 648 case 'status': 649 echo esc_html("<span class='lingo-status lingo-".$p->post_status."'>" . $p->post_status . "</span>");649 echo "<span class='lingo-status lingo-".$p->post_status."'>" . $p->post_status . "</span>"; 650 650 break; 651 651 … … 656 656 case 'last_post': 657 657 if($last != null) { 658 echo esc_html(date("Y/m/d", strtotime($last)) . "<br/>" . date("H:i:s", strtotime($last)));658 echo date("Y/m/d", strtotime($last)) . "<br/>" . date("H:i:s", strtotime($last)); 659 659 } else { 660 660 echo _e("No Posts", "lingo"); … … 663 663 664 664 case 'created': 665 echo esc_html(date("Y/m/d", strtotime($p->post_date)) . "<br/>" . date("H:i:s", strtotime($p->post_date)));665 echo date("Y/m/d", strtotime($p->post_date)) . "<br/>" . date("H:i:s", strtotime($p->post_date)); 666 666 667 667 break; -
wplingo/trunk/readme.txt
r1574278 r1574572 58 58 First Release 59 59 60 = 1.0.1 - 13-01-2017 =61 * Few bug fixes62 * New branding63 * Forum closing feature64 65 60 == Upgrade Notice == 66 61 67 62 = 1.0 = 68 63 You should update to this version, because You want this awesome plugin. 69 70 = 1.0.1 =71 Must have bug fix
Note: See TracChangeset
for help on using the changeset viewer.