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.
Flickrizer
Mark
Vanilla Staff
Flickrizer
0
Comments
Also, I just upgraded to 0.3 because I found another bug in the extension. It's not a huge deal, but if you tried to view a use account that didn't exist, it would throw a php error instead of a nice error - version 0.3 fixes that bug.
Fatal error: Cannot redeclare account_retrieveflickrphotostream() (previously declared in /home/virtual/site44/fst/var/www/html/Vanilla-1.1.2/extensions/FlickrFeed/default.php:169) in /home/virtual/site44/fst/var/www/html/Vanilla-1.1.2/extensions/Flickrizer/default.php on line 20
The only way I can get it to work is to turn off the extension again.
Any thoughts?
Simply look for the line:
for ($i = 0; $i < $ImageCount; $i++) { (should be line 55)
and change it something like:
for ($i = 10; $i < $ImageCount; $i++) { (this will give you the last 10 of the 20 images)
There are a few ways to do this in the code, but this seemed the simplest.