| baf1d9a0 | 09-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Less restrictive plugin name checking
This partially reverts de50cad65ae679a602e71adddffdd74df7ea3fbb as the strict check breaks existing plugins and this shouldn't be changed without prior discussi
Less restrictive plugin name checking
This partially reverts de50cad65ae679a602e71adddffdd74df7ea3fbb as the strict check breaks existing plugins and this shouldn't be changed without prior discussion and a warning for plugin authors with some time to adjust their plugins. Now all characters that are valid in PHP class names except "_" are allowed.
show more ...
|
| 00b89f9b | 08-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Fix encoding of special characters in HTML mails FS#2590
Before this change it was possible to send arbitrary HTML content to subscribers, if you are using HTML subscription mails and have untrustwo
Fix encoding of special characters in HTML mails FS#2590
Before this change it was possible to send arbitrary HTML content to subscribers, if you are using HTML subscription mails and have untrustworthy editors, it is recommended to upgrade as soon as possible (this doesn't affect the current stable release).
show more ...
|
| 0484ed6d | 08-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Display an error message when an enabled plugin has an invalid name
This displays an error message when building the plugin list and an enabled plugin does not follow the plugin naming conventions.
Display an error message when an enabled plugin has an invalid name
This displays an error message when building the plugin list and an enabled plugin does not follow the plugin naming conventions. This should help plugin developers and admins understand why their plugins aren't working.
show more ...
|
| eef93e99 | 08-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Use hardcoded plugin loading error message as $lang isn't initialized
When loading plugins, $lang might not be initialized yet, so use a hardcoded error message instead, especially as this error sho
Use hardcoded plugin loading error message as $lang isn't initialized
When loading plugins, $lang might not be initialized yet, so use a hardcoded error message instead, especially as this error should only be displayed for the admin (and then fixed). This also removes the previously localized message, it might be re-added as part of the new extension manager.
show more ...
|
| de50cad6 | 08-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Check plugin naming conventions during load FS#2464
This checks if plugin names are valid and only loads valid plugin files, this could prevent some errors from wrong upgrades as described in FS#246
Check plugin naming conventions during load FS#2464
This checks if plugin names are valid and only loads valid plugin files, this could prevent some errors from wrong upgrades as described in FS#2464.
show more ...
|
| dd74fecf | 08-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Remove BOM in linesToHash, partial fix for FS#2464
The BOM at the beginning of some plugin.info.txt files prevented the plugin manager from correctly reading the base property and thus it installed
Remove BOM in linesToHash, partial fix for FS#2464
The BOM at the beginning of some plugin.info.txt files prevented the plugin manager from correctly reading the base property and thus it installed the plugin in the wrong directory.
show more ...
|
| cd2f903b | 07-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Correct and add some PHPDoc comments, initialize some variables |
| 0a78cb46 | 07-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Fix the test if a subscription already exists FS#2580
This fixes the test for existing subscriptions by not only testing if the subscription for the deepest namespace level is for the current page b
Fix the test if a subscription already exists FS#2580
This fixes the test for existing subscriptions by not only testing if the subscription for the deepest namespace level is for the current page but by simply testing all levels. Test case is included, it fails without this change.
show more ...
|
| 05be3a57 | 07-Sep-2012 |
Olivier Duval <zorky00@gmail.com> |
French language update |
| 0e65a484 | 06-Sep-2012 |
Gerardo Zamudio <gerardo@gerardozamudio.net> |
Spanish language update |
| 72d49c3b | 06-Sep-2012 |
Andreas Gohr <andi@splitbrain.org> |
spanish language update FS#2586 |
| 520297b4 | 06-Sep-2012 |
Jukka Inkeri <jukka@awot.fi> |
Finish language update |
| ccde6bdb | 06-Sep-2012 |
日向小郎 <syaoranhinata@gmail.com> |
Traditional Chinese language update |
| 15c2c853 | 26-Aug-2012 |
Andreas Gohr <andi@splitbrain.org> |
GeSHi upgraded to version 1.0.8.11 |
| c3564cf9 | 26-Aug-2012 |
이명진 <aranet100@gmail.com> |
Korean language update |
| 77d44477 | 26-Aug-2012 |
Otto Vainio <otto@valjakko.net> |
Finish language update |
| 940dbfe4 | 26-Aug-2012 |
Gerrit <klapinklapin@gmail.com> |
Dutch language update |
| 7cdd8691 | 26-Aug-2012 |
이명진 <aranet100@gmail.com> |
Korean language update |
| ef72e4a3 | 26-Aug-2012 |
Miroslav Svoboda <msv@email.cz> |
Czech language update |
| d9934ae0 | 26-Aug-2012 |
Andreas Gohr <andi@splitbrain.org> |
removed data dir security check as suggested in FS#2547 |
| c114d4c4 | 26-Aug-2012 |
Andreas Gohr <andi@splitbrain.org> |
don't call set_magic_quotes_runtime if it doesn't exists FS#2583
this function was removed in PHP 5.4.0 |
| 99e10b7f | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Always disable compression when sitemaps are delivered
The class loader isn't available at that place in inc/init.php so the check if the sitemap is compressed didn't work. |
| c0f0f1f8 | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Remove unused/directly overwritten variable declarations in inc/html.php |
| 8d5e837e | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Fix/add some PHPDoc comments in inc/html.php |
| 6d9eab4d | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Prevent access to undefined variables and make returns consistent in html.php |