Ticket #6646: 6646.2.patch
File 6646.2.patch, 1.9 KB (added by , 2 years ago) |
---|
-
jobs.wordpress.net/public_html/wp-content/plugins/jobswp/jobswp-template.php
79 79 if ( $category ) { 80 80 $link .= '<a href="' . get_term_feed_link( $category->term_id, $category->taxonomy ) . '"'; 81 81 $title = ' title="' . $category->name . '"'; 82 $alt = ' alt="' . $category->name . '"';83 82 $link .= $title; 84 83 $link .= '>'; 85 84 $link .= '</a> '; -
jobs.wordpress.net/public_html/wp-content/plugins/jobswp/jobswp.php
158 158 * Adds allowance for ol, ul, li 159 159 * 160 160 * @param array $allowedtags The already allowed tags 161 * @param string $content The content162 161 * @return array The amended list of allowed tags 163 162 */ 164 public function wp_kses_allowed_html( $allowedtags , $content) {163 public function wp_kses_allowed_html( $allowedtags ) { 165 164 // Add permissable tags 166 165 $allowedtags['ol'] = array(); 167 166 $allowedtags['ul'] = array(); -
jobs.wordpress.net/public_html/wp-content/themes/jobswp/content-home.php
18 18 19 19 // Display the categories and their jobs. 20 20 foreach ( $job_categories as $category ) { 21 $posts = $job_category_jobs[ $category->slug ]; 22 21 23 22 //Display the name of the category, whether there are jobs or not 24 23 echo '<div class="jobs-group">'; 25 24