Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix build errors #3035

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

Merged
merged 1 commit into from
Oct 5, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/debug.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Enabling them all is as easy as it can get::

The :method:`Symfony\\Component\\Debug\\Debug::enable` method registers an
error handler and an exception handler. If the :doc:`ClassLoader component
</components/class_loader>` is available, a special class loader is also
registered.
</components/class_loader/introduction>` is available, a special class loader
is also registered.

Read the following sections for more information about the different available
tools.
Expand Down
5 changes: 3 additions & 2 deletions components/intl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@ replace the intl classes:
Composer automatically exposes these classes in the global namespace.

If you don't use Composer but the
:doc:`Symfony ClassLoader component</components/class_loader>`, you need to
expose them manually by adding the following lines to your autoload code::
:doc:`Symfony ClassLoader component </components/class_loader/introduction>`,
you need to expose them manually by adding the following lines to your autoload
code::

if (!function_exists('intl_is_failure')) {
require '/path/to/Icu/Resources/stubs/functions.php';
Expand Down
2 changes: 1 addition & 1 deletion cookbook/form/dynamic_form_modification.rst
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ On a form, we can usually listen to the following events:
below example uses.

The key is to add a ``POST_SUBMIT`` listener to the field that your new field
depends on. If you add a ``POST_SUBMIT`` listener to a form child (e.g. ``sport`),
depends on. If you add a ``POST_SUBMIT`` listener to a form child (e.g. ``sport``),
and add new children to the parent form, the Form component will detect the
new field automatically and map it to the submitted client data.

Expand Down