summaryrefslogtreecommitdiff
path: root/classes/feeds.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-02-19 19:46:09 +0300
committerAndrew Dolgov <[email protected]>2019-02-19 19:46:09 +0300
commit8cd7f31bdec78c4519ec5365a1bafb6fcefa50c5 (patch)
tree7202ac3d24a7e57525dbfdf9e507d8619f5e7b01 /classes/feeds.php
parent73c845858c02290ae563a8c021ef6f71d1fac9af (diff)
utility css updates
Diffstat (limited to 'classes/feeds.php')
-rwxr-xr-xclasses/feeds.php51
1 files changed, 27 insertions, 24 deletions
diff --git a/classes/feeds.php b/classes/feeds.php
index 60ccdc2e7..11172d876 100755
--- a/classes/feeds.php
+++ b/classes/feeds.php
@@ -831,31 +831,34 @@ class Feeds extends Handler_Protected {
<?php echo stylesheet_tag("css/default.css") ?>
<title>Feed Debugger</title>
</head>
- <body class="small_margins ttrss_utility claro">
- <h1>Feed Debugger: <?php echo "$feed_id: " . $this->getFeedTitle($feed_id) ?></h1>
- <form method="GET" action="">
- <input type="hidden" name="op" value="feeds">
- <input type="hidden" name="method" value="update_debugger">
- <input type="hidden" name="xdebug" value="1">
- <input type="hidden" name="csrf_token" value="<?php echo $csrf_token ?>">
- <input type="hidden" name="action" value="do_update">
- <input type="hidden" name="feed_id" value="<?php echo $feed_id ?>">
- <input type="checkbox" name="force_refetch" value="1" <?php echo $refetch_checked ?>> Force refetch<br/>
- <input type="checkbox" name="force_rehash" value="1" <?php echo $rehash_checked ?>> Force rehash<br/>
-
- <p/><button type="submit">Continue</button>
- </form>
-
- <hr>
-
- <pre><?php
-
- if ($do_update) {
- RSSUtils::update_rss_feed($feed_id, true);
- }
-
- ?></pre>
+ <body class="ttrss_utility feed_debugger">
+ <div class="container">
+ <h1>Feed Debugger: <?php echo "$feed_id: " . $this->getFeedTitle($feed_id) ?></h1>
+ <div class="content">
+ <form method="GET" action="">
+ <input type="hidden" name="op" value="feeds">
+ <input type="hidden" name="method" value="update_debugger">
+ <input type="hidden" name="xdebug" value="1">
+ <input type="hidden" name="csrf_token" value="<?php echo $csrf_token ?>">
+ <input type="hidden" name="action" value="do_update">
+ <input type="hidden" name="feed_id" value="<?php echo $feed_id ?>">
+ <input type="checkbox" name="force_refetch" value="1" <?php echo $refetch_checked ?>> Force refetch<br/>
+ <input type="checkbox" name="force_rehash" value="1" <?php echo $rehash_checked ?>> Force rehash<br/>
+
+ <p/><button type="submit">Continue</button>
+ </form>
+
+ <hr>
+
+ <pre><?php
+
+ if ($do_update) {
+ RSSUtils::update_rss_feed($feed_id, true);
+ }
+ ?></pre>
+ </div>
+ </div>
</body>
</html>
<?php