mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
Some more HTML validation fixes and CSS changes
This commit is contained in:
parent
7fe24d4ca0
commit
c539f13b36
@ -11,9 +11,9 @@
|
|||||||
| GNU General Public License (http://gnu.org).
|
| GNU General Public License (http://gnu.org).
|
||||||
|
|
|
|
||||||
| $Source: /cvs_backup/e107_0.8/e107_plugins/download/admin_download.php,v $
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/download/admin_download.php,v $
|
||||||
| $Revision: 1.7 $
|
| $Revision: 1.8 $
|
||||||
| $Date: 2009-07-23 15:23:18 $
|
| $Date: 2009-07-23 23:40:57 $
|
||||||
| $Author: e107coders $
|
| $Author: bugrain $
|
||||||
+----------------------------------------------------------------------------+
|
+----------------------------------------------------------------------------+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -356,7 +356,7 @@ if ($action == 'maint')
|
|||||||
while($row = $sql->db_Fetch()) {
|
while($row = $sql->db_Fetch()) {
|
||||||
if (!$foundSome) {
|
if (!$foundSome) {
|
||||||
$text .= $rs->form_open("post", e_SELF."?".e_QUERY, "myform");
|
$text .= $rs->form_open("post", e_SELF."?".e_QUERY, "myform");
|
||||||
$text .= '<table class="adminlist" style="width:100%">';
|
$text .= '<table class="adminlist">';
|
||||||
$text .= '<tr>';
|
$text .= '<tr>';
|
||||||
$text .= '<th>'.DOWLAN_13.'</th>';
|
$text .= '<th>'.DOWLAN_13.'</th>';
|
||||||
$text .= '<th>'.DOWLAN_67.'</th>';
|
$text .= '<th>'.DOWLAN_67.'</th>';
|
||||||
@ -411,7 +411,7 @@ if ($action == 'maint')
|
|||||||
if (0 == $sql->db_Count('download', '(*)', " WHERE download_url='".$file['fname']."'")) {
|
if (0 == $sql->db_Count('download', '(*)', " WHERE download_url='".$file['fname']."'")) {
|
||||||
if (!$foundSome) {
|
if (!$foundSome) {
|
||||||
$text .= $rs->form_open("post", e_SELF."?".e_QUERY, "myform");
|
$text .= $rs->form_open("post", e_SELF."?".e_QUERY, "myform");
|
||||||
$text .= '<table class="adminlist" style="width:100%">';
|
$text .= '<table class="adminlist">';
|
||||||
$text .= '<tr>';
|
$text .= '<tr>';
|
||||||
$text .= '<th>'.DOWLAN_13.'</th>';
|
$text .= '<th>'.DOWLAN_13.'</th>';
|
||||||
$text .= '<th>'.DOWLAN_182.'</th>';
|
$text .= '<th>'.DOWLAN_182.'</th>';
|
||||||
@ -454,7 +454,7 @@ if ($action == 'maint')
|
|||||||
if (!is_readable(e_DOWNLOAD.$row['download_url'])) {
|
if (!is_readable(e_DOWNLOAD.$row['download_url'])) {
|
||||||
if (!$foundSome) {
|
if (!$foundSome) {
|
||||||
$text .= $rs->form_open("post", e_SELF."?".e_QUERY, "myform");
|
$text .= $rs->form_open("post", e_SELF."?".e_QUERY, "myform");
|
||||||
$text .= '<table class="adminlist" style="width:100%">';
|
$text .= '<table class="adminlist">';
|
||||||
$text .= '<tr>';
|
$text .= '<tr>';
|
||||||
$text .= '<th>'.DOWLAN_67.'</th>';
|
$text .= '<th>'.DOWLAN_67.'</th>';
|
||||||
$text .= '<th>'.DOWLAN_27.'</th>';
|
$text .= '<th>'.DOWLAN_27.'</th>';
|
||||||
@ -497,7 +497,7 @@ if ($action == 'maint')
|
|||||||
while($row = $sql->db_Fetch()) {
|
while($row = $sql->db_Fetch()) {
|
||||||
if (!$foundSome) {
|
if (!$foundSome) {
|
||||||
$text .= $rs->form_open("post", e_SELF."?".e_QUERY, "myform");
|
$text .= $rs->form_open("post", e_SELF."?".e_QUERY, "myform");
|
||||||
$text .= '<table class="adminlist" style="width:100%">';
|
$text .= '<table class="adminlist">';
|
||||||
$text .= '<tr>';
|
$text .= '<tr>';
|
||||||
$text .= '<th>'.DOWLAN_67.'</th>';
|
$text .= '<th>'.DOWLAN_67.'</th>';
|
||||||
$text .= '<th>'.DOWLAN_27.'</th>';
|
$text .= '<th>'.DOWLAN_27.'</th>';
|
||||||
@ -600,7 +600,7 @@ if ($action == 'maint')
|
|||||||
if ($filesize <> $row['download_filesize']) {
|
if ($filesize <> $row['download_filesize']) {
|
||||||
if (!$foundSome) {
|
if (!$foundSome) {
|
||||||
$text .= $rs->form_open("post", e_SELF."?".e_QUERY, "myform");
|
$text .= $rs->form_open("post", e_SELF."?".e_QUERY, "myform");
|
||||||
$text .= '<table class="adminlist" style="width:100%">';
|
$text .= '<table class="adminlist">';
|
||||||
$text .= '<tr>';
|
$text .= '<tr>';
|
||||||
$text .= '<th>'.DOWLAN_67.'</th>';
|
$text .= '<th>'.DOWLAN_67.'</th>';
|
||||||
$text .= '<th>'.DOWLAN_27.'</th>';
|
$text .= '<th>'.DOWLAN_27.'</th>';
|
||||||
@ -731,7 +731,7 @@ if ($action == 'limits')
|
|||||||
}
|
}
|
||||||
$txt = "
|
$txt = "
|
||||||
<form method='post' action='".e_SELF."?".e_QUERY."'>
|
<form method='post' action='".e_SELF."?".e_QUERY."'>
|
||||||
<table class='fborder' style='width:100%'>
|
<table class='adminlist'>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan='4' style='text-align:left'>
|
<td colspan='4' style='text-align:left'>
|
||||||
";
|
";
|
||||||
|
@ -11,8 +11,8 @@
|
|||||||
| GNU General Public License (http://gnu.org).
|
| GNU General Public License (http://gnu.org).
|
||||||
|
|
|
|
||||||
| $Source: /cvs_backup/e107_0.8/e107_plugins/download/handlers/adminDownload_class.php,v $
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/download/handlers/adminDownload_class.php,v $
|
||||||
| $Revision: 1.13 $
|
| $Revision: 1.14 $
|
||||||
| $Date: 2009-07-23 23:03:49 $
|
| $Date: 2009-07-23 23:40:57 $
|
||||||
| $Author: bugrain $
|
| $Author: bugrain $
|
||||||
|
|
|
|
||||||
+----------------------------------------------------------------------------+
|
+----------------------------------------------------------------------------+
|
||||||
@ -657,7 +657,7 @@ class adminDownload extends download
|
|||||||
<li id='tab-external'><a href='#download-edit-external'>".DOWLAN_176."</a></li>
|
<li id='tab-external'><a href='#download-edit-external'>".DOWLAN_176."</a></li>
|
||||||
<li id='tab-mirror'><a href='#download-edit-mirror'>".DOWLAN_128."</a></li>
|
<li id='tab-mirror'><a href='#download-edit-mirror'>".DOWLAN_128."</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div style='text-align:center'>
|
<div>
|
||||||
<form method='post' action='".e_SELF."?".e_QUERY."' id='myform'>
|
<form method='post' action='".e_SELF."?".e_QUERY."' id='myform'>
|
||||||
<fieldset id='download-create'>
|
<fieldset id='download-create'>
|
||||||
<table style='".ADMIN_WIDTH."' class='adminlist'>
|
<table style='".ADMIN_WIDTH."' class='adminlist'>
|
||||||
@ -1437,9 +1437,9 @@ class adminDownload extends download
|
|||||||
extract($preset);
|
extract($preset);
|
||||||
|
|
||||||
$frm_action = (isset($_POST['add_category'])) ? e_SELF."?cat" : e_SELF."?".e_QUERY;
|
$frm_action = (isset($_POST['add_category'])) ? e_SELF."?cat" : e_SELF."?".e_QUERY;
|
||||||
$text = "<div style='text-align:center'>
|
$text = "<div>
|
||||||
<form method='post' action='{$frm_action}' id='dlform'>
|
<form method='post' action='{$frm_action}' id='dlform'>
|
||||||
<table cellpadding='0' cellspacing='0' class='adminform'>
|
<table cellpadding='0' cellspacing='0' class='adminlist'>
|
||||||
<colgroup span='2'>
|
<colgroup span='2'>
|
||||||
<col class='col-label' />
|
<col class='col-label' />
|
||||||
<col class='col-control' />
|
<col class='col-control' />
|
||||||
@ -1696,7 +1696,7 @@ class adminDownload extends download
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
||||||
$text = "<div style='text-align:center'>
|
$text = "<div>
|
||||||
<form method='post' action='".e_SELF."?".e_QUERY."'>
|
<form method='post' action='".e_SELF."?".e_QUERY."'>
|
||||||
<table style='".ADMIN_WIDTH."' class='adminlist'>
|
<table style='".ADMIN_WIDTH."' class='adminlist'>
|
||||||
<tr>
|
<tr>
|
||||||
@ -1748,7 +1748,7 @@ class adminDownload extends download
|
|||||||
$edit = FALSE;
|
$edit = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
$text = "<div style='text-align:center'>
|
$text = "<div>
|
||||||
<form method='post' action='".e_SELF."?".e_QUERY."' id='dataform'>\n
|
<form method='post' action='".e_SELF."?".e_QUERY."' id='dataform'>\n
|
||||||
<table style='".ADMIN_WIDTH."' class='adminlist'>
|
<table style='".ADMIN_WIDTH."' class='adminlist'>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user