From 7327499064ae165468c7440f8571c3e570b58a0b Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Mon, 5 May 2008 16:39:18 +0000 Subject: Added get_dir_file_info(), get_file_info(), and get_mime_by_extension() to the File Helper. Changed ( ! condition) into (! condition) within the code --- user_guide/libraries/trackback.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'user_guide/libraries/trackback.html') diff --git a/user_guide/libraries/trackback.html b/user_guide/libraries/trackback.html index 513cbf2c9..6ca1fec49 100644 --- a/user_guide/libraries/trackback.html +++ b/user_guide/libraries/trackback.html @@ -86,7 +86,7 @@ $tb_data = array(
                'charset'   => 'utf-8'
                );

-if ( ! $this->trackback->send($tb_data))
+if (! $this->trackback->send($tb_data))
{
     echo $this->trackback->display_errors();
}
@@ -173,7 +173,7 @@ if ($this->uri->segment(3) == FALSE)
    $this->trackback->send_error("Unable to determine the entry ID");
}

-if ( ! $this->trackback->receive())
+if (! $this->trackback->receive())
{
    $this->trackback->send_error("The Trackback did not contain valid data");
}
-- cgit v1.2.3-24-g4f1b