Skip to content

Commit

Permalink
follow 3b92238 and fix typo in code
Browse files Browse the repository at this point in the history
  • Loading branch information
antograssiot committed Mar 27, 2015
1 parent 3b92238 commit 727132a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion en/models/retrieving-your-data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1000,7 +1000,7 @@ operators, such as ``MIN()``, ``MAX()``, etc., in a similar fashion::

array(
'fields' => array('DISTINCT (User.name) AS my_column_name'),
'order' = >array('User.id DESC')
'order' =>array('User.id DESC')
)

You can create very complex conditions by nesting multiple
Expand Down
8 changes: 6 additions & 2 deletions fr/core-libraries/helpers/html.rst
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ couvrira les méthodes du Helper Html et comment les utiliser.
L'option ``fullBase`` a été ajouté.
Le support de :term:`syntaxe de plugin` a été ajouté.

.. php:method:: link(string $title, mixed $url = null, array $options = array(), string $confirmMessage = false)
.. php:method:: link(string $title, mixed $url = null, array $options = array())
:param string $title: Le texte à afficher comme corps du lien.
:param mixed $url: Soit la chaîne spécifiant le chemin, ou un
Expand Down Expand Up @@ -479,9 +479,13 @@ couvrira les méthodes du Helper Html et comment les utiliser.
<img src="/img/recipes/6.jpg" alt="Brownies" />
</a>

.. versionchanged:: 2.4
.. versionchanged:: 2.4
L'option ``escapeTitle`` a été ajoutée.

.. versionchanged:: 2.6
L'argument ``$confirmMessage`` a été dépréciée. Utilisez la clé
``confirm`` dans ``$options`` à la place.

Regardez aussi la méthode :php:meth:`HtmlHelper::url` pour
plus d'exemples des différents types d'URLs.

Expand Down
2 changes: 1 addition & 1 deletion fr/models/retrieving-your-data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ analogue::

array(
'fields' => array('DISTINCT (User.nom) AS nom_de_ma_colonne'),
'order' = >array('User.id DESC')
'order' =>array('User.id DESC')
)

Vous pouvez créer des conditions très complexes, en regroupant des tableaux
Expand Down

0 comments on commit 727132a

Please sign in to comment.