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

Commit

Permalink
Fix EmlXmlMessage namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Jun 22, 2016
1 parent 825d59e commit 32ea833
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
1 change: 0 additions & 1 deletion core/src/plugins/editor.eml/EmlParser.php
Expand Up @@ -20,7 +20,6 @@
*/
namespace Pydio\Editor\EML;

use EmlXmlMessage;
use Pydio\Access\Core\AJXP_MetaStreamWrapper;
use Pydio\Access\Core\Model\AJXP_Node;
use Pydio\Access\Core\Model\UserSelection;
Expand Down
12 changes: 11 additions & 1 deletion core/src/plugins/editor.eml/EmlXmlMessage.php
Expand Up @@ -18,11 +18,18 @@
*
* The latest code can be found at <https://pydio.com/>.
*/
namespace Pydio\Editor\EML;

use Pydio\Core\Http\Response\XMLDocSerializableResponseChunk;

defined('AJXP_EXEC') or die('Access not allowed');


class EmlXmlMessage implements \Pydio\Core\Http\Response\XMLDocSerializableResponseChunk
/**
* Class EmlXmlMessage
* @package Pydio\Editor\EML
*/
class EmlXmlMessage implements XMLDocSerializableResponseChunk
{

protected $charset;
Expand Down Expand Up @@ -67,6 +74,9 @@ public function toXML()

}

/**
* @return string
*/
public function getCharset()
{
return $this->charset;
Expand Down

0 comments on commit 32ea833

Please sign in to comment.