Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Extensions list broken
Instead of displaying all of the extensions in the list, Vanilla displays the right number, but thinks they're all the whisper plugin:
Any ideas?
Running PHP 5.0.4 on Windows, if it's any help. (If it's PHP5 that's the problem then that's fine, since the host I'll be putting this on is still on 4.x)
Any ideas?
Running PHP 5.0.4 on Windows, if it's any help. (If it's PHP5 that's the problem then that's fine, since the host I'll be putting this on is still on 4.x)
0
This discussion has been closed.
Comments
$this->Extensions[] = clone $Extension;
But I would presume that breaks PHP4, since it has no idea what cloning objects is.
e: I guess you could do it the somewhat ugly way: but it doesn't really seem like an elegant solution.
Setting
php_admin_value zend.ze1_compatibility_mode 1
in the apache config also fixes this issue. It definitely has to do with PHP5s object handling.