aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/HTTP/HTTPClient.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/HTTP/HTTPClient.php')
-rw-r--r--inc/HTTP/HTTPClient.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/inc/HTTP/HTTPClient.php b/inc/HTTP/HTTPClient.php
index 861bb5124..e92edda02 100644
--- a/inc/HTTP/HTTPClient.php
+++ b/inc/HTTP/HTTPClient.php
@@ -739,13 +739,13 @@ class HTTPClient
*/
protected function debugHtml($info, $var = null)
{
- print '<b>' . $info . '</b> ' . (microtime(true) - $this->start) . 's<br />';
+ echo '<b>' . $info . '</b> ' . (microtime(true) - $this->start) . 's<br />';
if (!is_null($var)) {
ob_start();
print_r($var);
$content = htmlspecialchars(ob_get_contents());
ob_end_clean();
- print '<pre>' . $content . '</pre>';
+ echo '<pre>' . $content . '</pre>';
}
}
@@ -757,9 +757,9 @@ class HTTPClient
*/
protected function debugText($info, $var = null)
{
- print '*' . $info . '* ' . (microtime(true) - $this->start) . "s\n";
+ echo '*' . $info . '* ' . (microtime(true) - $this->start) . "s\n";
if (!is_null($var)) print_r($var);
- print "\n-----------------------------------------------\n";
+ echo "\n-----------------------------------------------\n";
}
/**