summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xssn.at>2010-08-17 11:23:14 +0200
committerFlorian Pritz <bluewind@xssn.at>2010-08-17 11:23:14 +0200
commitebce6e597a95459dbe9b177aab4b71a6cff1aa7e (patch)
tree2903e3606d85f24c803657fc7eb777fd4d9142fa
parent7bbb966c8c67a627e0e6de92d9a392fcb5d5b313 (diff)
fix error message when client is too old
Signed-off-by: Florian Pritz <bluewind@xssn.at>
-rw-r--r--system/application/controllers/file.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/application/controllers/file.php b/system/application/controllers/file.php
index ae0a51b06..2005d21bd 100644
--- a/system/application/controllers/file.php
+++ b/system/application/controllers/file.php
@@ -22,7 +22,7 @@ class File extends Controller {
if (strpos($_SERVER['HTTP_USER_AGENT'], 'fb-client') !== false) {
$client_version = substr($_SERVER['HTTP_USER_AGENT'], 10);
if ($this->var->latest_client != $client_version) {
- echo "Your are using an old client version. Latest is $this->var->latest_client.\n";
+ echo "Your are using an old client version. Latest is ".$this->var->latest_client."\n";
}
$this->var->cli_client = "fb-client";
} elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'libcurl') !== false) {