gaim/www

(11:09:41) LSchiere2: nosnilmot: i have a report that the paths in the non-root mozilla compile install of gaim are sketchy
(11:10:17) nosnilmot: any specifics?
(11:10:42) LSchiere2: yeah, people don't normally have a "usr" inside ~
(11:14:28) nosnilmot: I do
(11:14:51) nosnilmot: no I don't...
(11:15:41) LSchiere2: its not a big deal, easy to change, i just thought i'd let you know
(11:17:18) nosnilmot: http://www.nosnilmot.com/gaim/gaim-faq-ssl.patch
(11:18:37) LSchiere2: oh wow, ask and i recieve. you rock nosnilmot
(11:18:55) nosnilmot: I don't like to be wrong
<html>
<body>
<table>
<?php
$faq = file("./faq.txt");
$temp;
$qa=0;
for($i=0; $i < sizeof($faq); $i=$i+2)
{
if($qa % 2 == 0) // is even
{
?>
<tr>
<td valign="top"><img src="/images/q.png" width="20" height="32" border="0" alt="Q." /></td>
<td valign="top"><br /><font face="Verdana, Tahoma, Arial, Helvetica" size="-1">
<?php
$temp = substr($faq[$i],3);
print($temp);
?>
</font></td>
</tr>
<?php
}
if(!($qa % 2 == 0)) //is odd
{
?>
<tr>
<td valign="top"><img src="/images/a.png" width="20" height="27" border="0" alt="A." /></td>
<td valign="top"><br /><font face="Verdana, Tahoma, Arial, Helvetica" size="-1">
<?php
$temp = substr($faq[$i],3);
print($temp);
?>
</font></td>
</tr>
<?php
}
$qa++;
}
?>
</table>
</body>
</html>