mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-13 20:11:07 +02:00
update_rss_feed: escape dumped content while debugging
This commit is contained in:
parent
3b44aae0f3
commit
0bc503ff9a
@ -662,7 +662,7 @@
|
|||||||
|
|
||||||
if ($_REQUEST["xdebug"] == 2) {
|
if ($_REQUEST["xdebug"] == 2) {
|
||||||
print "content: ";
|
print "content: ";
|
||||||
print $entry_content;
|
print htmlspecialchars($entry_content);
|
||||||
print "\n";
|
print "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -771,6 +771,12 @@
|
|||||||
$entry_plugin_data .= mb_strtolower(get_class($plugin)) . ",";
|
$entry_plugin_data .= mb_strtolower(get_class($plugin)) . ",";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($_REQUEST["xdebug"] == 2) {
|
||||||
|
print "processed content: ";
|
||||||
|
print htmlspecialchars($article["content"]);
|
||||||
|
print "\n";
|
||||||
|
}
|
||||||
|
|
||||||
$entry_plugin_data = db_escape_string($entry_plugin_data);
|
$entry_plugin_data = db_escape_string($entry_plugin_data);
|
||||||
|
|
||||||
_debug("plugin data: $entry_plugin_data", $debug_enabled);
|
_debug("plugin data: $entry_plugin_data", $debug_enabled);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user