Fix double escaping

This commit is contained in:
Michal Čihař 2012-11-09 11:51:11 +01:00
parent e6d476148d
commit d32b60ae91
2 changed files with 3 additions and 4 deletions

View File

@ -244,8 +244,7 @@ or signon authentication should be used for this server.
allow you to log in in arbitrary server if :config:option:`$cfg['AllowArbitraryServer']` enabled.
* ':abbr:`HTTP (HyperText Transfer Protocol)`' authentication (was
called 'advanced' in previous versions and can be written also as
'http') (``$auth\_type = ':abbr:`HTTP (HyperText Transfer
Protocol)`'``) as introduced in 1.3.0 allows you to log in as any
'http') (``$auth_type = 'http';'``) as introduced in 1.3.0 allows you to log in as any
valid MySQL user via HTTP-Auth.
* 'signon' authentication mode (``$auth_type = 'signon'``) as
introduced in 2.10.0 allows you to log in from prepared PHP session
@ -334,7 +333,7 @@ phpMyAdmin 2.5.5 the order inside the array is used for sorting the
databases in the navigation panel, so that you can individually
arrange your databases. If you want to have certain databases at the
top, but don't care about the others, you do not need to specify all
other databases. Use: ``$cfg['Servers'][$i]['only\_db'] = array('db3',
other databases. Use: ``$cfg['Servers'][$i]['only_db'] = array('db3',
'db4', '\*');`` instead to tell phpMyAdmin that it should display db3
and db4 on top, and the rest in alphabetic order.

View File

@ -97,7 +97,7 @@ handle.
There is a file called '*transformations.lib.php*' that provides some
basic functions which can be included by any other transform function.
The file name convention is ``[Mimetype]\_[Subtype]\_[Transformation
The file name convention is ``[Mimetype]_[Subtype]_[Transformation
Name].class.php``, while the abtract class that it extends has the
name ``[Transformation Name]TransformationsPlugin``. All of the
methods that have to be implemented by a transformations plug-in are: