summaryrefslogtreecommitdiffstats
path: root/apps/contacts/ajax/messagebox.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/contacts/ajax/messagebox.php')
-rw-r--r--apps/contacts/ajax/messagebox.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/contacts/ajax/messagebox.php b/apps/contacts/ajax/messagebox.php
new file mode 100644
index 00000000000..b3cad947674
--- /dev/null
+++ b/apps/contacts/ajax/messagebox.php
@@ -0,0 +1,16 @@
+<?php
+/**
+ * Copyright (c) 2011 Thomas Tanghus <thomas@tanghus.net>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+require_once('../../../lib/base.php');
+$l10n = new OC_L10N('contacts');
+OC_JSON::checkLoggedIn();
+OC_JSON::checkAppEnabled('contacts');
+
+$output = new OC_TEMPLATE("contacts", "part.messagebox");
+$output -> printpage();
+?>