From d180f6c3e5f2af175a406c521bd7540d6f0cf7df Mon Sep 17 00:00:00 2001 From: Kim Egede Jakobsen Date: Sun, 6 May 2012 01:21:20 +0200 Subject: [PATCH] Changed some of the doc-block links. !But think there is a mistake somewhere with the links! Camel-case or lowercase? doc block content -> working link (Model.php) \#useTable -> \#usetable \#displayField -> \#displayfield \#cacheQueries -> \#cachequeries \#sortByKey -> \#sortByKey (equals - basic.php) --- lib/Cake/Model/Model.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Cake/Model/Model.php b/lib/Cake/Model/Model.php index 54ab14d29..193f710de 100644 --- a/lib/Cake/Model/Model.php +++ b/lib/Cake/Model/Model.php @@ -59,7 +59,7 @@ class Model extends Object implements CakeEventListener { * Custom database table name, or null/false if no table association is desired. * * @var string - * @link http://book.cakephp.org/2.0/en/models/model-attributes.html#useTable + * @link http://book.cakephp.org/2.0/en/models/model-attributes.html#usetable */ public $useTable = null; @@ -69,7 +69,7 @@ class Model extends Object implements CakeEventListener { * This field is also used in `find('list')` when called with no extra parameters in the fields list * * @var string - * @link http://book.cakephp.org/2.0/en/models/model-attributes.html#displayField + * @link http://book.cakephp.org/2.0/en/models/model-attributes.html#displayfield */ public $displayField = null; @@ -261,7 +261,7 @@ class Model extends Object implements CakeEventListener { * caching only, the results are not stored beyond the current request. * * @var boolean - * @link http://book.cakephp.org/2.0/en/models/model-attributes.html#cacheQueries + * @link http://book.cakephp.org/2.0/en/models/model-attributes.html#cachequeries */ public $cacheQueries = false;