diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-05-13 06:22:33 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-05-13 06:22:33 +0200 |
commit | 0b59f270a432f8c7b6128981f0a39b4a2e2fbd34 (patch) | |
tree | 1e7655eabd76bb981692f5d4f21cb1fc7be3e9cd /user_guide/libraries/trackback.html | |
parent | 5cf664748ee295867f593d7eb7991bd35fe8eca6 (diff) |
Some sweeping syntax changes for consistency:
(! foo) changed to ( ! foo)
|| changed to OR
changed newline standardization code in various places from preg_replace to str_replace
Diffstat (limited to 'user_guide/libraries/trackback.html')
-rw-r--r-- | user_guide/libraries/trackback.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/libraries/trackback.html b/user_guide/libraries/trackback.html index 02c8852d4..f86ccca02 100644 --- a/user_guide/libraries/trackback.html +++ b/user_guide/libraries/trackback.html @@ -86,7 +86,7 @@ $tb_data = array(<br /> 'charset' => 'utf-8'<br />
);<br />
<br />
-if (! $this->trackback->send($tb_data))<br />
+if ( ! $this->trackback->send($tb_data))<br />
{<br />
echo $this->trackback->display_errors();<br />
}<br />
@@ -173,7 +173,7 @@ if ($this->uri->segment(3) == FALSE)<br /> $this->trackback->send_error("Unable to determine the entry ID");<br />
}<br />
<br />
-if (! $this->trackback->receive())<br />
+if ( ! $this->trackback->receive())<br />
{<br />
$this->trackback->send_error("The Trackback did not contain valid data");<br />
}<br />
|