Skip to content

Commit

Permalink
Merge pull request #8830 from ewinslow/zaudio-followup
Browse files Browse the repository at this point in the history
chore(zaudio): Followup to remove remaining references
  • Loading branch information
ewinslow committed Aug 8, 2015
2 parents 8063397 + 69e9f78 commit c44c5c4
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/admin/upgrading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ From 1.x to 2.0
Removed plugins
---------------

The following plugins will no longer be bundled with Elgg core:
The following plugins are no longer bundled with Elgg core:

* categories (https://github.com/elgg/categories)

* zaudio (https://github.com/elgg/zaudio)

IE-specific workarounds have been dropped
-----------------------------------------
Expand Down
3 changes: 1 addition & 2 deletions docs/plugins/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,4 @@ The following plugins are also bundled with Elgg, but are not (yet) documented
- tagcloud
- twitter_api
- uservalidationbyemail
- web_services
- zaudio
- web_services
1 change: 0 additions & 1 deletion engine/classes/Elgg/Composer/PostUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ public static function execute(Event $event) {
'twitter_api',
'uservalidationbyemail',
'web_services',
'zaudio',
];

foreach ($managed_plugins as $plugin) {
Expand Down
2 changes: 1 addition & 1 deletion engine/classes/Elgg/Project/CodeStyle.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ protected function findFiles($dir, &$files) {
$relative_path = substr($full, $this->substr_start);

if (is_dir($full)) {
if ($entry[0] === '.' || preg_match('~(?:/vendors?|/zaudio/audioplayer)$~', $full)) {
if ($entry[0] === '.' || preg_match('~(?:/vendors?)$~', $full)) {
// special case
if ($entry !== '.scripts') {
continue;
Expand Down
2 changes: 0 additions & 2 deletions engine/classes/ElggPluginManifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,6 @@ public function getCategories() {
'aalborg_theme',
'blog',
'bookmarks',
'categories',
'ckeditor',
'custom_index',
'dashboard',
Expand Down Expand Up @@ -418,7 +417,6 @@ public function getCategories() {
'twitter_api',
'uservalidationbyemail',
'web_services',
'zaudio',
);

$cats = $this->parser->getAttribute('category');
Expand Down

0 comments on commit c44c5c4

Please sign in to comment.