mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 22:08:54 +00:00
[feature/template-events] Add additional space for editors
Use `' ?'. '>'` rather than `' ?>'` as the latter causes problems in some editors. PHPBB3-9550
This commit is contained in:
parent
6fc0c889fd
commit
2add66c0eb
1 changed files with 1 additions and 1 deletions
|
@ -914,7 +914,7 @@ class phpbb_template_filter extends php_user_filter
|
||||||
}
|
}
|
||||||
// Need spaces inside php tags as php cannot grok
|
// Need spaces inside php tags as php cannot grok
|
||||||
// < ?php? > sans the spaces
|
// < ?php? > sans the spaces
|
||||||
return ' ?>' . $all_compiled . '<?php ';
|
return ' ?' . '>' . $all_compiled . '<?php ';
|
||||||
}
|
}
|
||||||
|
|
||||||
// 1. find all mods defining hooks for location
|
// 1. find all mods defining hooks for location
|
||||||
|
|
Loading…
Add table
Reference in a new issue