Fix charset issues on featured update and showlist.php. Bug 258478.

git-svn-id: svn://10.0.0.236/branches/update_0_9_branch@164477 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
psychoticwolf%carolina.rr.com
2004-10-27 00:26:42 +00:00
parent 1e44763fe2
commit b46f1bb26f
3 changed files with 13 additions and 12 deletions

View File

@@ -176,13 +176,13 @@ if (!$category) {$categoryname="All"; } else {$categoryname = $category;}
echo"<DIV class=\"pagenum\" "; if ($application!="mozilla") {echo" style=\"margin-right: 95px;\""; } echo">";
$previd=$pageid-1;
if ($previd >"0") {
echo"<a href=\"?pageid=$previd\">&#171; Previous</A> · ";
echo"<a href=\"?pageid=$previd\">&#171; Previous</A> &bull; ";
}
echo"Page $pageid of $num_pages";
$nextid=$pageid+1;
if ($pageid <$num_pages) {
echo" · <a href=\"?pageid=$nextid\">Next &#187;</a>";
echo" &bull; <a href=\"?pageid=$nextid\">Next &#187;</a>";
}
echo"</DIV>\n";
@@ -395,7 +395,8 @@ echo"<DIV class=\"iconbar\" style=\"width: 104px;\">";
if ($appname=="Thunderbird") {
echo"<A HREF=\"moreinfo.php?id=$id&vid=$vid\"><IMG SRC=\"/images/download.png\" BORDER=0 HEIGHT=34 WIDTH=34 STYLE=\"float:left;\" TITLE=\"More Info about $name\" ALT=\"\">More Info</A>";
} else {
echo"<A HREF=\"install.php/$filename?id=$id&vid=$vid\"><IMG SRC=\"/images/download.png\" BORDER=0 HEIGHT=34 WIDTH=34 STYLE=\"float:left;\" TITLE=\"Install $name\" ALT=\"\">Install</A>";
//echo"<A HREF=\"install.php/$filename?id=$id&vid=$vid\"><IMG SRC=\"/images/download.png\" BORDER=0 HEIGHT=34 WIDTH=34 STYLE=\"float:left;\" TITLE=\"Install $name\" ALT=\"\">Install</A>";
echo"<A HREF=\"javascript:void(InstallTrigger.install({'$name $version':'$uri'}))\"><IMG SRC=\"/images/download.png\" BORDER=0 HEIGHT=34 WIDTH=34 STYLE=\"float:left;\" TITLE=\"Install $name\" ALT=\"\">Install</A>";
}
echo"<BR><SPAN class=\"filesize\">Size: $filesize kb</SPAN></DIV>";
if ($homepage) {echo"<DIV class=\"iconbar\" style=\"width: 98px;\"><A HREF=\"$homepage\"><IMG SRC=\"/images/home.png\" BORDER=0 HEIGHT=34 WIDTH=34 STYLE=\"float:left;\" TITLE=\"$name Homepage\" ALT=\"\">Homepage</A></DIV>";}
@@ -427,14 +428,14 @@ echo"<DIV id=\"listnav\">";
echo"<DIV class=\"pagenum\">";
$previd=$pageid-1;
if ($previd >"0") {
echo"<a href=\"?pageid=$previd\">&#171; Previous</A> · ";
echo"<a href=\"?pageid=$previd\">&#171; Previous</A> &bull; ";
}
echo"Page $pageid of $num_pages";
$nextid=$pageid+1;
if ($pageid <$num_pages) {
echo" · <a href=\"?pageid=$nextid\">Next &#187;</a>";
echo" &bull; <a href=\"?pageid=$nextid\">Next &#187;</a>";
}
echo"<BR>\n";

View File

@@ -41,8 +41,8 @@
<DIV class="contentbox" style="margin-left: 2px; border-color: #00E;">
<DIV class="boxheader">Firefox 1.0 Preview Release and Thunderbird 0.8 Released!</DIV>
<SPAN class="itemdescription">
<P>The Firefox 1.0 Preview Release is now available. Three large new features Live Bookmarks, the Find bar and a new plugin
installer have landed since 0.9, along with a host of critical bugfixes.</P>
<P>The Firefox 1.0 Preview Release is now available. Three large new features - Live Bookmarks, the Find bar and a new plugin
installer - have landed since 0.9, along with a host of critical bugfixes.</P>
<P>Mozilla Thunderbird 0.8 has just been released! This latest milestone adds a frequently requested feature: support for
filtering all POP mail into a Global Inbox under Local Folders. In addition, this release sees the debut of

View File

@@ -185,14 +185,14 @@ if (!$category) {$categoryname="All"; } else {$categoryname = $category;}
echo"<DIV class=\"pagenum\" "; if ($application!="mozilla") {echo" style=\"margin-right: 95px;\""; } echo">";
$previd=$pageid-1;
if ($previd >"0") {
echo"<a href=\"?pageid=$previd\">&#171; Previous</A> · ";
echo"<a href=\"?pageid=$previd\">&#171; Previous</A> &bull; ";
}
echo"Page $pageid of $num_pages";
$nextid=$pageid+1;
if ($pageid <$num_pages) {
echo" · <a href=\"?pageid=$nextid\">Next &#187;</a>";
echo" &bull; <a href=\"?pageid=$nextid\">Next &#187;</a>";
}
echo"</DIV>\n";
@@ -408,7 +408,7 @@ echo"<A HREF=\"moreinfo.php?id=$id&vid=$vid\"><IMG SRC=\"/images/download.png\"
} else {
//Make Theme Install work again, Bug 246754
//echo"<A HREF=\"javascript:void(InstallTrigger.installChrome(InstallTrigger.SKIN,'install.php?id=$id&vid=$vid','$name'))\">";
echo"<A HREF=\"javascript:void(InstallTrigger.installChrome(InstallTrigger.SKIN,'$uri','$name'))\">";
echo"<A HREF=\"javascript:void(InstallTrigger.installChrome(InstallTrigger.SKIN,'$uri','$name $version'))\">";
echo"<IMG SRC=\"/images/download.png\" BORDER=0 HEIGHT=34 WIDTH=34 STYLE=\"float:left;\" TITLE=\"Install $name\" ALT=\"\">Install</A>";
}
echo"<BR><SPAN class=\"filesize\">Size: $filesize kb</SPAN></DIV>";
@@ -445,14 +445,14 @@ echo"<DIV id=\"listnav\">";
echo"<DIV class=\"pagenum\">";
$previd=$pageid-1;
if ($previd >"0") {
echo"<a href=\"?pageid=$previd\">&#171; Previous</A> · ";
echo"<a href=\"?pageid=$previd\">&#171; Previous</A> &bull; ";
}
echo"Page $pageid of $num_pages";
$nextid=$pageid+1;
if ($pageid <$num_pages) {
echo" · <a href=\"?pageid=$nextid\">Next &#187;</a>";
echo" &bull; <a href=\"?pageid=$nextid\">Next &#187;</a>";
}
echo"<BR>\n";