diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/application/controllers/file.php | 2 |
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) { |