Skip to content

Commit

Permalink
See changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
leigeber committed May 5, 2014
1 parent 706844f commit 5a6e11c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.0.1

2014-05-05

- Resolved issue where settings were duplicating group headings

# 1.0.0

2014-04-26
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Limitee 1.0.0
# Limitee 1.0.1



Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"schema_version": "1.0",
"name" : "limitee",
"label": "Limitee",
"version": "1.0.0",
"version": "1.0.1",
"types": ["extension"],
"paths": {
"system": [
Expand Down
2 changes: 1 addition & 1 deletion system/expressionengine/third_party/limitee/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
if (! defined('LIMITEE_NAME')) {
define('LIMITEE_NAME', 'Limitee');
define('LIMITEE_DESC', 'Limit the length of titles, text inputs and textareas in publish layouts.');
define('LIMITEE_VER', '1.0.0');
define('LIMITEE_VER', '1.0.1');
define('LIMITEE_AUTHOR', 'Caddis');
define('LIMITEE_DOCS', '');
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
. '<td>' . form_dropdown('rules[group_title_' . $row->group_id . '][type]', array('1' => 'Soft', '2' => 'Hard'), $title_type) . '</td>'
. '</tr>';

$group_name = $row->group_name;
$group = $row->group_name;
}

echo '<tr>'
Expand Down

0 comments on commit 5a6e11c

Please sign in to comment.