Skip to content

Commit 30e7df0

Browse files
author
Derek Jones
committed
s/Moudle/Module and bump version to 1.0.2
1 parent 062a437 commit 30e7df0

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

emoji_support/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ It's always good idea to check with the developer though, as it is possible that
3636

3737
## Change Log
3838

39+
### 1.0.2
40+
41+
- Fixed a PHP error when uninstalling this add-on.
42+
3943
### 1.0.1
4044

4145
- Fixed the link for database backups based on which version of ExpressionEngine is installed

emoji_support/addon.setup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
'author_url' => 'https://ellislab.com/',
66
'name' => 'Emoji Support',
77
'description' => '',
8-
'version' => '1.0.0',
8+
'version' => '1.0.2',
99
'namespace' => 'EllisLab\Addons\EmojiSupport',
1010
'settings_exist' => TRUE,
1111
);

emoji_support/upd.emoji_support.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function install()
1616
{
1717
ee('Model')->make('Module', [
1818
'module_name' => 'Emoji_support',
19-
'module_version' => '1.0.0',
19+
'module_version' => '1.0.2',
2020
'has_cp_backend' => TRUE,
2121
'has_publish_fields' => FALSE
2222
])->save();
@@ -25,7 +25,7 @@ public function install()
2525

2626
public function uninstall()
2727
{
28-
ee('Model')->get('Moudle')
28+
ee('Model')->get('Module')
2929
->filter('module_name', 'Emoji_support')
3030
->delete();
3131
return TRUE;

0 commit comments

Comments
 (0)