Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

If Typoscript is 1 then PHP is true #64

Merged
10 changes: 5 additions & 5 deletions Documentation/Configuration/TSconfig.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ User TSconfig
.. confval:: enableSomething

:type: bool
:Default: false
:Default: 0

If :typoscript:`true`, something is enabled...
If :typoscript:`1` then something is enabled.

Example::

tx_myextension.enableSomething = true
tx_myextension.enableSomething = 1


.. index::
Expand All @@ -49,8 +49,8 @@ Page TSconfig
:type: int
:Default: 5

This value limits something. If it is set to :typoscript:`0` the thing will
be unlimited...
This value limits something. If it is set to :typoscript:`0` something will
be unlimited.


Example, limit something to 10::
Expand Down
6 changes: 3 additions & 3 deletions Documentation/Configuration/TypoScriptReference/Constants.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ Enable / disable some options
.. confval:: enableThis

:type: bool
:Default: false
:Default: 0

If :php:`true`, something is enabled...
If :typoscript:`1` then something is enabled.

Example::

plugin.tx_example.settings {
enableThis = true
enableThis = 1
}

Configure page ids
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Configuration/TypoScriptReference/Setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ Enable / disable some options
.. confval:: enableThat

:type: bool, stdWrap
:Default: false
:Default: 0

If :php:`TRUE`, something is enabled...
If :typoscript:`1` then something is enabled...


Example::
Expand Down