<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FluxBB.org Forums - In need of some assistance with a mod]]></title>
	<link rel="self" href="http://fluxbb.org/forums/feed/atom/topic/1823/"/>
	<updated>2008-09-08T02:19:30Z</updated>
	<generator>FluxBB</generator>
	<id>http://fluxbb.org/forums/topic/1823/in-need-of-some-assistance-with-a-mod/</id>
		<entry>
			<title type="html"><![CDATA[Re: In need of some assistance with a mod]]></title>
			<link rel="alternate" href="http://fluxbb.org/forums/post/14549/#p14549"/>
			<content type="html"><![CDATA[Thank you so much for this. It works like a charm. :)

Cheers!
Shedrock]]></content>
			<author>
				<name><![CDATA[shedrock]]></name>
				<uri>http://fluxbb.org/forums/user/41/</uri>
			</author>
			<updated>2008-09-08T02:19:30Z</updated>
			<id>http://fluxbb.org/forums/post/14549/#p14549</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: In need of some assistance with a mod]]></title>
			<link rel="alternate" href="http://fluxbb.org/forums/post/14547/#p14547"/>
			<content type="html"><![CDATA[untested
[code]$count = 0;
while (list(, $temp) = @each($icons_topic)) {
    if ($count == '8') {
        $count = '0';
        echo '<br />';
    }
        
    echo '<input type="radio" name="icon_topic" value="'.$temp.'" />&nbsp;<img src="img/icons/'.$temp.'.gif" title="'.$temp.'" alt="'.$temp.'" />&nbsp;';
    
    ++$count;
}
echo '<input type="radio" name="icon_topic" value="0" checked="checked" />&nbsp;None';[/code]]]></content>
			<author>
				<name><![CDATA[Gizzmo]]></name>
				<uri>http://fluxbb.org/forums/user/10/</uri>
			</author>
			<updated>2008-09-08T02:00:11Z</updated>
			<id>http://fluxbb.org/forums/post/14547/#p14547</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[In need of some assistance with a mod]]></title>
			<link rel="alternate" href="http://fluxbb.org/forums/post/14546/#p14546"/>
			<content type="html"><![CDATA[I am trying to modify the code below so that my post_icons can be 8 per line. As it is now they are all displayed on one line and breaks the theme on some browsers. Can anyone help me out here.

[code]if ($fid): 
        $icons_topic = array();
        $d = dir(PUN_ROOT.'img/icons');
                echo '<div class="blockform">
             <div style="width: 650px;" class="inform">
                <fieldset id="post_icons" class="icon_topics">
                    <legend>Topic Icons</legend>';
        while (($entry = $d->read()) !== false)
        {
            if (substr($entry, strlen($entry)-4) == '.gif') $icons_topic[] = substr($entry, 0, strlen($entry)-4);
        }
        $d->close();
        if (count($icons_topic) > 1)
        {
            while (list(, $temp) = @each($icons_topic)) echo '<input type="radio" name="icon_topic" value="'.$temp.'" />&nbsp;<img src="img/icons/'.$temp.'.gif" title="'.$temp.'" alt="'.$temp.'" />&nbsp;';
            echo '<input type="radio" name="icon_topic" value="0" checked="checked" />&nbsp;None';
        }
?>    
                </fieldset>
            </div>
        </div>[/code]

Thanks
Shedrock]]></content>
			<author>
				<name><![CDATA[shedrock]]></name>
				<uri>http://fluxbb.org/forums/user/41/</uri>
			</author>
			<updated>2008-09-08T00:31:13Z</updated>
			<id>http://fluxbb.org/forums/post/14546/#p14546</id>
		</entry>
</feed>
