Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=aaa09c380cf8c5ed7bdf5f7e5fe49a19fef81ee7
commit aaa09c380cf8c5ed7bdf5f7e5fe49a19fef81ee7 Author: Melko <[email protected]> Date: Sun Sep 11 15:36:35 2011 +0200 Remove answer-question mode in about.php diff --git a/frugalware/about.php b/frugalware/about.php index e752ce6..8627891 100644 --- a/frugalware/about.php +++ b/frugalware/about.php @@ -34,23 +34,14 @@ set_locale($llang, $domain); // FIXME: use docs/about.txt as a source instead of this one $fwshortabout = gettext("Frugalware is a general purpose linux distribution, designed for intermediate users (who are not afraid of text mode)."); -$fwabout= array ( - array (gettext("Frequently asked questions"), - gettext("Please read the dedicated <a href=\"http://wiki.frugalware.org/index.php/FAQ\">FAQ page on the wiki</a>.")) - ); +$fwlongabout = gettext("Please read the dedicated <a href=\"http://wiki.frugalware.org/index.php/FAQ\">FAQ page on the wiki</a>."); // include the config and let's start page include("config.inc.php"); include("header.php"); fwmiddlebox(gettext("Short"), $fwshortabout); -$cont = ""; -for ( $i=0; $i<count($fwabout); $i++ ) -{ - $cont .= "<p><b><img src=\"images/arrow.gif\" alt=\"\" border=\"0\" /> ".gettext("Question").": ".$fwabout[$i][0]."</b></p>\n"; - $cont .= "<p align=\"justify\">".gettext("Answer").": ".$fwabout[$i][1]."</p>\n"; -} -fwmiddlebox(gettext("Long"), $cont); +fwmiddlebox(gettext("Long"), $fwlongabout); include("footer.php"); ?> _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
