feed editor improvements
This commit is contained in:
parent
c5d8841e91
commit
3547842a4f
2 changed files with 19 additions and 8 deletions
19
backend.php
19
backend.php
|
@ -1165,8 +1165,8 @@
|
||||||
|
|
||||||
print "<p><table width=\"100%\" class=\"prefFeedList\" id=\"prefFeedList\">";
|
print "<p><table width=\"100%\" class=\"prefFeedList\" id=\"prefFeedList\">";
|
||||||
print "<tr class=\"title\">
|
print "<tr class=\"title\">
|
||||||
<td> </td>
|
<td width=\"3%\"> </td>
|
||||||
<td>Select</td>
|
<td width=\"3%\">Select</td>
|
||||||
<td width=\"20%\">
|
<td width=\"20%\">
|
||||||
<a href=\"javascript:updateFeedList('title')\">Title</a></td>
|
<a href=\"javascript:updateFeedList('title')\">Title</a></td>
|
||||||
<td width=\"20%\">
|
<td width=\"20%\">
|
||||||
|
@ -1185,9 +1185,6 @@
|
||||||
<td width=\"10%\">
|
<td width=\"10%\">
|
||||||
<a href=\"javascript:updateFeedList('purge_interval')\">Purge Days</a>
|
<a href=\"javascript:updateFeedList('purge_interval')\">Purge Days</a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
|
||||||
<a href=\"javascript:updateFeedList('last_updated')\">Last updated</a>
|
|
||||||
</td>
|
|
||||||
</tr>";
|
</tr>";
|
||||||
|
|
||||||
$lnum = 0;
|
$lnum = 0;
|
||||||
|
@ -1226,6 +1223,9 @@
|
||||||
|
|
||||||
print "<td><input onclick='toggleSelectRow(this);'
|
print "<td><input onclick='toggleSelectRow(this);'
|
||||||
type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
|
type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
|
||||||
|
|
||||||
|
$edit_title = truncate_string($edit_title, 40);
|
||||||
|
$edit_link = truncate_string($edit_link, 60);
|
||||||
|
|
||||||
print "<td><a href=\"javascript:editFeed($feed_id);\">" .
|
print "<td><a href=\"javascript:editFeed($feed_id);\">" .
|
||||||
$edit_title . "</a></td>";
|
$edit_title . "</a></td>";
|
||||||
|
@ -1257,7 +1257,10 @@
|
||||||
|
|
||||||
print "<td><input disabled=\"true\" type=\"checkbox\"
|
print "<td><input disabled=\"true\" type=\"checkbox\"
|
||||||
id=\"FRCHK-".$line["id"]."\"></td>";
|
id=\"FRCHK-".$line["id"]."\"></td>";
|
||||||
|
|
||||||
|
$edit_title = truncate_string($edit_title, 40);
|
||||||
|
$edit_link = truncate_string($edit_link, 60);
|
||||||
|
|
||||||
print "<td>$edit_title</td>";
|
print "<td>$edit_title</td>";
|
||||||
print "<td>$edit_link</td>";
|
print "<td>$edit_link</td>";
|
||||||
|
|
||||||
|
@ -1320,9 +1323,9 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$line["last_updated"]) $line["last_updated"] = "Never";
|
/* if (!$line["last_updated"]) $line["last_updated"] = "Never";
|
||||||
|
|
||||||
print "<td>" . $line["last_updated"] . "</td>";
|
print "<td>" . $line["last_updated"] . "</td>"; */
|
||||||
|
|
||||||
print "</tr>";
|
print "</tr>";
|
||||||
|
|
||||||
|
|
|
@ -701,4 +701,12 @@
|
||||||
initialize_user_prefs($link, 1);
|
initialize_user_prefs($link, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function truncate_string($str, $max_len) {
|
||||||
|
if (strlen($str) > $max_len) {
|
||||||
|
return substr($str, 0, $max_len) . "...";
|
||||||
|
} else {
|
||||||
|
return $str;
|
||||||
|
}
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in a new issue