Skip to content

Commit

Permalink
Readme & version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
joedolson committed Jun 15, 2018
1 parent 74a8850 commit 98522e8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
8 changes: 2 additions & 6 deletions src/my-calendar-install.php
Original file line number Diff line number Diff line change
Expand Up @@ -579,9 +579,7 @@ function my_calendar_copyr( $source, $dest ) {
}
// Loop through the folder.
$dir = dir( $source );
while ( false !== (
$entry = $dir->read()
) ) {
while ( false !== ( $entry = $dir->read() ) ) {
// Skip pointers.
if ( '.' == $entry || '..' == $entry ) {
continue;
Expand Down Expand Up @@ -613,9 +611,7 @@ function my_calendar_rmdirr( $dirname ) {
}
// Loop through the folder.
$dir = dir( $dirname );
while ( false !== (
$entry = $dir->read()
) ) {
while ( false !== ( $entry = $dir->read() ) ) {
// Skip pointers.
if ( '.' == $entry || '..' == $entry ) {
continue;
Expand Down
4 changes: 2 additions & 2 deletions src/my-calendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* License: GPL-2.0+
* License URI: http://www.gnu.org/license/gpl-2.0.txt
* Domain Path: lang
* Version: 3.0.2
* Version: 3.0.3
*/

/*
Expand All @@ -42,7 +42,7 @@
}

global $mc_version, $wpdb;
$mc_version = '3.0.2';
$mc_version = '3.0.3';

define( 'MC_DEBUG', false );

Expand Down
7 changes: 6 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: calendar, dates, times, event, events, scheduling, schedule, event manager
Requires at least: 4.4
Tested up to: 4.9
Requires PHP: 5.3
Stable tag: 3.0.2
Stable tag: 3.0.3
Text domain: my-calendar
License: GPLv2 or later

Expand Down Expand Up @@ -83,6 +83,11 @@ Translating my plug-ins is always appreciated. Visit <a href="https://translate.

== Changelog ==

= 3.0.3 =

* Bug fix: Category key needed to use a 'WHERE' not an 'AND'; broke output if limiting by category
* Bug fix: Error thrown in style editor & category editor if custom directory did not exist

= 3.0.2 =

* 3.0.1 did not correct the right error. Correct fix.
Expand Down

0 comments on commit 98522e8

Please sign in to comment.