aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engine/classes/ElggPluginManifestParser17.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/engine/classes/ElggPluginManifestParser17.php b/engine/classes/ElggPluginManifestParser17.php
index 8e4a79e4f..eb7ccadc1 100644
--- a/engine/classes/ElggPluginManifestParser17.php
+++ b/engine/classes/ElggPluginManifestParser17.php
@@ -15,7 +15,10 @@ class ElggPluginManifestParser17 extends ElggPluginManifestParser {
'copyright', 'license', 'elgg_version',
// were never really used and not enforced in code.
- 'requires', 'recommends', 'conflicts'
+ 'requires', 'recommends', 'conflicts',
+
+ // not a 1.7 field, but we need it
+ 'name',
);
/**
@@ -28,6 +31,8 @@ class ElggPluginManifestParser17 extends ElggPluginManifestParser {
return false;
}
+ $elements = array();
+
foreach ($this->manifestObject->children as $element) {
$key = $element->attributes['key'];
$value = $element->attributes['value'];
@@ -45,6 +50,10 @@ class ElggPluginManifestParser17 extends ElggPluginManifestParser {
}
}
+ if ($elements && !array_key_exists('name', $elements)) {
+ $elements['name'] = $this->caller->getName();
+ }
+
$this->manifest = $elements;
if (!$this->manifest) {