summaryrefslogtreecommitdiffstats
path: root/system/libraries/Trackback.php
diff options
context:
space:
mode:
authorDaniel Hunsaker <danhunsaker@gmail.com>2013-03-04 10:31:26 +0100
committerDaniel Hunsaker <danhunsaker@gmail.com>2013-03-04 10:31:26 +0100
commitb2ac67a3a766ac18f5041eff7a5cbeef7437a184 (patch)
tree9d4fe206b6d14ae5b2921e247282ea23a8836cac /system/libraries/Trackback.php
parent50dfe0175df02fe4aa243757bdf1b42fb9fc3169 (diff)
Oops, missed a few places where EXIT_SUCCESS was being used.
Signed-off-by: Daniel Hunsaker <danhunsaker@gmail.com>
Diffstat (limited to 'system/libraries/Trackback.php')
-rw-r--r--system/libraries/Trackback.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Trackback.php b/system/libraries/Trackback.php
index ea8017efd..ecc7129e3 100644
--- a/system/libraries/Trackback.php
+++ b/system/libraries/Trackback.php
@@ -212,7 +212,7 @@ class CI_Trackback {
public function send_error($message = 'Incomplete Information')
{
echo '<?xml version="1.0" encoding="utf-8"?'.">\n<response>\n<error>1</error>\n<message>".$message."</message>\n</response>";
- exit(EXIT_SUCCESS);
+ exit;
}
// --------------------------------------------------------------------
@@ -228,7 +228,7 @@ class CI_Trackback {
public function send_success()
{
echo '<?xml version="1.0" encoding="utf-8"?'.">\n<response>\n<error>0</error>\n</response>";
- exit(EXIT_SUCCESS);
+ exit;
}
// --------------------------------------------------------------------