Skip to content

Commit

Permalink
Fixed a bug where the entry config type wasn't respecting the `all_…
Browse files Browse the repository at this point in the history
…blogs` argument. Bumped to version 2.5.20.
  • Loading branch information
danwolfgang committed Feb 18, 2016
1 parent dbb738c commit ca3e3d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/ConfigAssistant.pack/config.yaml
Expand Up @@ -4,7 +4,7 @@ key: ConfigAssistant
author_link: https://github.com/openmelody/mt-plugin-configassistant
author_name: "Byrne Reese, Open Melody Software Group"
description: This plugin provides a simple YAML based framework for creating plugin and theme configuration options.
version: 2.5.19
version: 2.5.20
static_version: 21
schema_version: 4

Expand Down
2 changes: 1 addition & 1 deletion addons/ConfigAssistant.pack/lib/ConfigAssistant/Plugin.pm
Expand Up @@ -1040,7 +1040,7 @@ sub list_entry_or_page {
);

my @blog_ids;
if ( $blog_ids eq 'all' ) {
if ( $blog_ids eq 'all' || $blog_ids == 0 ) {

# @blog_ids should stay empty so all blogs are loaded.
}
Expand Down

0 comments on commit ca3e3d6

Please sign in to comment.