remove old-style big feed browser (2)

This commit is contained in:
Andrew Dolgov 2009-01-24 06:23:02 +01:00
parent 3a6521f041
commit 64b3069d27
3 changed files with 3 additions and 9 deletions

View File

@ -141,7 +141,6 @@
require_once "modules/pref-filters.php";
require_once "modules/pref-labels.php";
require_once "modules/pref-users.php";
require_once "modules/pref-feed-browser.php";
if (!sanity_check($link)) { return; }

View File

@ -1284,14 +1284,15 @@ function backend_sanity_check_callback() {
}
if (!xmlhttp.responseXML) {
fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
fatalError(3, "Sanity Check: Received reply is not XML",
xmlhttp.responseText);
return;
}
var reply = xmlhttp.responseXML.firstChild.firstChild;
if (!reply) {
fatalError(3, "[D002, Invalid RPC reply]: " + xmlhttp.responseText);
fatalError(3, "Sanity Check: Invalid RPC reply", xmlhttp.responseText);
return;
}

View File

@ -123,12 +123,6 @@ window.onload = init;
onclick="selectTab('genConfig')"><?php echo __('Preferences') ?></div>
<div id="feedConfigTab" class="prefsTab"
onclick="selectTab('feedConfig')"><?php echo __('My Feeds') ?></div>
<?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
<!-- <div id="feedBrowserTab" class="prefsTab"
onclick="selectTab('feedBrowser')"><?php echo __('Other Feeds') ?></div>
<?php } ?> -->
<!-- <div id="pubItemsTab" class="prefsTab"
onclick="selectTab('pubItems')"><?php echo __('Published Articles') ?></div> -->
<div id="filterConfigTab" class="prefsTab"
onclick="selectTab('filterConfig')"><?php echo __('Filters') ?></div>
<div id="labelConfigTab" class="prefsTab"