Skip to content

Commit

Permalink
[TASK] Document deprecation of andWhere of the select function
Browse files Browse the repository at this point in the history
stop using andWhere in examples. Migrate to .where and .markers.

Related: #25112
  • Loading branch information
Christopher committed Mar 7, 2015
1 parent 656e2dd commit 5076e5a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Documentation/ContentObjects/LoadRegister/Index.rst
Expand Up @@ -75,8 +75,8 @@ Example:
pidInList = this
orderBy = sorting
# Now we use the registered parameter
andWhere = uid = {REGISTER:param}
andWhere.insertData = 1
where = uid = {REGISTER:param}
where.insertData = 1
}
10.renderObj = COA
10.renderObj {
Expand Down
2 changes: 1 addition & 1 deletion Documentation/ContentObjects/Text/Index.rst
Expand Up @@ -97,7 +97,7 @@ Here is the same example in its context::
10 {
table = tt_content
select {
andWhere.dataWrap = irre_parentid = {field:uid}
where.dataWrap = irre_parentid = {field:uid}
begin = 0
}

Expand Down
3 changes: 3 additions & 0 deletions Documentation/Functions/Select/Index.rst
Expand Up @@ -207,6 +207,9 @@ Always secure input from outside, for example with intval!

andWhere = NOT doktype

**Note:** This property is deprecated since TYPO3 7.1! Use
the properties .where and .markers instead.


.. container:: table-row

Expand Down

0 comments on commit 5076e5a

Please sign in to comment.