Post saving/cache and Google Analytics integration

This commit is contained in:
Savetheinternet
2011-04-06 18:31:26 +10:00
parent 10bd465ea3
commit 08bbd3f912
6 changed files with 131 additions and 8 deletions

View File

@@ -460,6 +460,16 @@
buildIndex();
sql_close();
// Tell Javascript that we posted successfully
if(isset($_COOKIE[$config['cookies']['js']]))
$js = json_decode($_COOKIE[$config['cookies']['js']]);
else
$js = Array();
// Tell it to delete the cached post for referer
$js->{$_SERVER['HTTP_REFERER']} = true;
// Encode and set cookie
setcookie($config['cookies']['js'], json_encode($js), 0, $config['cookies']['jail']?$config['cookies']['path']:'/', null, false, false);
$root = $post['mod'] ? $config['root'] . $config['file_mod'] . '?/' : $config['root'];
if($config['always_noko'] || $noko) {