featurelist.orgfeaturelist.org
 
U
D
1 points - posted 221 days ago by JoeyT2008 - status: Completed - 2 comments watch embed this
Beneath the "Addon Manager" text, where you can optionally add text, I was thinking it would be cool if a random Sloganizer quote was there. Example: http://addons.eventscripts.com...SLOGANIZER would make a random sloganizer quote using my name.

<?php
$word = "JoeyT2008";
$slogan = fopen("http://www.sloganizer.net/en/outbound.php?slogan=$word", "r");
$slogan = fread($slogan, 256);
$r1 = array("<a href='http://www.sloganizer.net/en/' title='Generated by Sloganizer.net' style='text-decoration:none;'>", "</a>", '"', "'");
$r2 = array("!", "?", ",");
$slogan = strreplace($r1, "", $slogan);
$slogan = str
replace($r2, ".", $slogan);
?&gt;

And there you have your slogan to add.

Venjax posted on 2008-02-10 21:59:39
Sorry - this feature is rejected. It could cause security concerns that we aren't willing to risk.

Venjax posted on 2008-02-10 22:24:56
You're in luck - I found a new way to handle it. Seems to work ok.