1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-08 15:46:44 +02:00

Bugtracker #4244 - trackback caching related - thanks Shirka

This commit is contained in:
e107steved
2007-12-08 14:49:56 +00:00
parent fb824e5241
commit 818a1cd4c9
2 changed files with 19 additions and 13 deletions

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/comment.php,v $ | $Source: /cvs_backup/e107_0.8/comment.php,v $
| $Revision: 1.3 $ | $Revision: 1.4 $
| $Date: 2007-08-17 19:23:26 $ | $Date: 2007-12-08 14:49:44 $
| $Author: e107steved $ | $Author: e107steved $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@@ -325,11 +325,6 @@ $field = ($field ? $field : ($id ? $id : ""));
$width = (isset($width) && $width ? $width : ""); $width = (isset($width) && $width ? $width : "");
$cobj->compose_comment($table, $action, $field, $width, $subject, $rate=FALSE); $cobj->compose_comment($table, $action, $field, $width, $subject, $rate=FALSE);
if (!strstr(e_QUERY, "poll")) {
$cache = ob_get_contents();
$e107cache->set("comment.php?{$table}.{$field}", $cache);
}
if ($comment_ob_start) ob_end_flush(); // dump the buffer we started
if(isset($pref['trackbackEnabled']) && $pref['trackbackEnabled'] && $table == "news"){ if(isset($pref['trackbackEnabled']) && $pref['trackbackEnabled'] && $table == "news"){
@@ -372,6 +367,13 @@ if(isset($pref['trackbackEnabled']) && $pref['trackbackEnabled'] && $table == "n
} }
} }
if (!strstr(e_QUERY, "poll"))
{
$cache = ob_get_contents();
$e107cache->set("comment.php?{$table}.{$field}", $cache);
}
if ($comment_ob_start) ob_end_flush(); // dump the buffer we started
require_once(FOOTERF); require_once(FOOTERF);

View File

@@ -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/trackback/trackbackClass.php,v $ | $Source: /cvs_backup/e107_0.8/e107_plugins/trackback/trackbackClass.php,v $
| $Revision: 1.2 $ | $Revision: 1.3 $
| $Date: 2007-01-29 20:23:49 $ | $Date: 2007-12-08 14:49:44 $
| $Author: e107steved $ | $Author: e107steved $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@@ -152,9 +152,13 @@ class trackbackClass
if(!$errorMessage) if(!$errorMessage)
{ {
if(!$sql -> db_Insert("trackback", "0, $pid, '$title', '$excerpt', '$permLink', '$blog_name' ")) if(!$sql -> db_Insert("trackback", "0, {$pid}, '{$title}', '{$excerpt}', '{$permLink}', '{$blog_name}' "))
{ {
$errorMessage = "Unable to enter your trackback information into the database -> 0, $pid, '$title', '$excerpt', '$permLink', '$blog_name'"; $errorMessage = "Unable to enter your trackback information into the database -> 0, {$pid}, '{$title}', '{$excerpt}', '{$permLink}', '{$blog_name}'";
}
else
{
e107cache->clear("comment.php?news.{$pid}");
} }
} }