summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/general/models.rst
diff options
context:
space:
mode:
authorvlakoff <vlakoff@gmail.com>2012-06-16 14:21:32 +0200
committervlakoff <vlakoff@gmail.com>2012-06-16 14:21:32 +0200
commitff3f7dea40e8fae81dd586b340d30d24154cf5ab (patch)
treebae494c2a27e11eb8a9336c6882b84de86ce6dcc /user_guide_src/source/general/models.rst
parentf512b73bc78760198a5409f2c4da71fe749b1301 (diff)
Documentation: remaining PHP "var" declarations changed to "public"
Since PHP 4 isn't supported anymore, let's clean up these few PHP "var" declarations which were remaining in the documentation. According to my checks, there is no more PHP "var" left.
Diffstat (limited to 'user_guide_src/source/general/models.rst')
-rw-r--r--user_guide_src/source/general/models.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/user_guide_src/source/general/models.rst b/user_guide_src/source/general/models.rst
index 87f63e416..2e1e025ee 100644
--- a/user_guide_src/source/general/models.rst
+++ b/user_guide_src/source/general/models.rst
@@ -18,9 +18,9 @@ model class might look like::
class Blog_model extends CI_Model {
- var $title = '';
- var $content = '';
- var $date = '';
+ public $title = '';
+ public $content = '';
+ public $date = '';
function __construct()
{