diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-03-26 13:30:10 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-03-26 13:30:10 +0200 |
commit | c6a68e04169802c8aa82e41634ce350eafd1ec1e (patch) | |
tree | c8aba45aac54706c5bb4be8acc8c865a52d35991 /system/database/drivers/mssql | |
parent | 4cf4fa0b2f04253b266aec345108b57de0bf485e (diff) |
Add visibility declarations where they remain missing
Diffstat (limited to 'system/database/drivers/mssql')
-rw-r--r-- | system/database/drivers/mssql/mssql_driver.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/system/database/drivers/mssql/mssql_driver.php b/system/database/drivers/mssql/mssql_driver.php index f2933fe43..912808631 100644 --- a/system/database/drivers/mssql/mssql_driver.php +++ b/system/database/drivers/mssql/mssql_driver.php @@ -539,13 +539,12 @@ class CI_DB_mssql_driver extends CI_DB { * * Generates a platform-specific delete string from the supplied data * - * @access public * @param string the table name * @param array the where clause * @param string the limit clause * @return string */ - function _delete($table, $where = array(), $like = array(), $limit = FALSE) + protected function _delete($table, $where = array(), $like = array(), $limit = FALSE) { $conditions = ''; |