Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix mailer testing - Missing description on boot.conf plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Oct 30, 2014
1 parent f35059a commit 9f89438
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions core/src/plugins/boot.conf/class.BootConfLoader.php
Expand Up @@ -344,10 +344,10 @@ public function testConnexions($action, $httpVars, $fileVars)
$mailerPlug = AJXP_PluginsService::findPluginById("mailer.phpmailer-lite");
$mailerPlug->loadConfigs(array("MAILER" => $data["MAILER_ENABLE"]["MAILER_SYSTEM"]));
$mailerPlug->sendMail(
array($data["MAILER_ENABLE"]["MAILER_ADMIN"]),
array("adress" => $data["MAILER_ENABLE"]["MAILER_ADMIN"]),
"Pydio Test Mail",
"Body of the test",
array($data["MAILER_ENABLE"]["MAILER_ADMIN"])
array("adress" => $data["MAILER_ENABLE"]["MAILER_ADMIN"])
);
echo 'SUCCESS:Mail sent to the admin adress, please check it is in your inbox!';

Expand Down
2 changes: 1 addition & 1 deletion core/src/plugins/boot.conf/manifest.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ajxp_plugin label="CONF_MESSAGE[]" description="CONF_MESSAGE[]" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<ajxp_plugin label="CONF_MESSAGE[Bootstrap Loader]" description="CONF_MESSAGE[Core plugin for loading the framework. Do NOT disable this plugin!]" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="file:../core.ajaxplorer/ajxp_registry.xsd" mixins="dibidriver_provider" id="boot.conf">
<class_definition classname="BootConfLoader" filename="plugins/boot.conf/class.BootConfLoader.php" />
<client_settings>
Expand Down

0 comments on commit 9f89438

Please sign in to comment.