Plugin Directory

Changeset 1224034


Ignore:
Timestamp:
08/18/2015 07:41:21 PM (11 years ago)
Author:
tinkerpriest
Message:

Magazine Columns: Updated stable tag

  • Added validation
  • Updated version and stable tag
Location:
magazine-columns/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • magazine-columns/trunk/magazine-columns.php

    r608036 r1224034  
    55Description: Divides your post or page content into two or more columns, like a magazine article.
    66Author: c.bavota
    7 Version: 1.0.6
     7Version: 1.0.7
    88Author URI: http://www.bavotasan.com/
    99License: GPL2
    1010*/
    1111
    12 /*  Copyright 2012  c.bavota  (email : [email protected])
     12/*  Copyright 2015  c.bavota  (email : [email protected])
    1313
    1414    This program is free software; you can redistribute it and/or modify
     
    6363
    6464        foreach( $col_content as $column ) {
    65             $output = '<div class="column c' . $count . '">' . $column . '</div>';
    66             $output = str_replace( '<div class="column c' . $count . '"><br />', '<div class="column c' . $count . '"><p>', $output );
     65            $output = '<div class="column c' . esc_attr( $count ) . '">' . $column . '</div>';
     66            $output = str_replace( '<div class="column c' . esc_attr( $count ) . '"><br />', '<div class="column c' . esc_attr( $count ) . '"><p>', $output );
    6767            $content .= $output;
    6868        }
  • magazine-columns/trunk/readme.txt

    r608036 r1224034  
    44Tags: magazine columns, multiple post columns, columns, magazine, post columns, page columns
    55Requires at least: 2.7
    6 Tested up to: 3.4.2
    7 Stable tag: 1.0.6
     6Tested up to: 4.3
     7Stable tag: 1.0.7
    88
    99Divides your post or page content into two or more columns, like a magazine article.
     
    3939
    4040== Change Log ==
     41
     42Version 1.0.7 (2015-8-18)
     43<ul>
     44<li>Added validation</li>
     45<li>Updated version and stable tag</li>
     46</ul>
    4147
    4248Version 1.0.6 (2012-10-04)
Note: See TracChangeset for help on using the changeset viewer.