From 413d0cdac49257089a0790f6ac92973a36a6b69f Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Mon, 21 Mar 2011 16:25:00 +0100 Subject: remove file_mod->check_client_version() The interfaces shouldn't change anymore. Signed-off-by: Florian Pritz --- application/models/file_mod.php | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'application/models/file_mod.php') diff --git a/application/models/file_mod.php b/application/models/file_mod.php index dfb203226..62c613ebe 100644 --- a/application/models/file_mod.php +++ b/application/models/file_mod.php @@ -146,17 +146,6 @@ class File_mod extends CI_Model { $this->load->view($this->var->view_dir.'/footer', $data); } - function check_client_version() - { - if ($this->var->cli_client == "fb-client") { - $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"; - } - } - - } - // download a given ID // TODO: make smaller function download() -- cgit v1.2.3-24-g4f1b