merge r29901 from trunk to branch 2.7
bug 3156 fixed: avoid warning on PHP 5.2 for nl2br second parameter git-svn-id: http://piwigo.org/svn/branches/2.7@29902 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
acda99cf4d
commit
83f267dc95
1 changed files with 11 additions and 1 deletions
12
picture.php
12
picture.php
|
@ -137,7 +137,17 @@ if ( isset($_GET['metadata']) )
|
|||
// add default event handler for rendering element content
|
||||
add_event_handler('render_element_content', 'default_picture_content');
|
||||
// add default event handler for rendering element description
|
||||
add_event_handler('render_element_description', 'nl2br');
|
||||
add_event_handler('render_element_description', 'pwg_nl2br');
|
||||
|
||||
/**
|
||||
* pwg_nl2br is useful for PHP 5.2 which doesn't accept more than 1
|
||||
* parameter on nl2br() (and anyway the second parameter of nl2br does not
|
||||
* match what Piwigo gives.
|
||||
*/
|
||||
function pwg_nl2br($string)
|
||||
{
|
||||
return nl2br($string);
|
||||
}
|
||||
|
||||
trigger_notify('loc_begin_picture');
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue