ajax reload fixes
This commit is contained in:
parent
c397a2f89b
commit
4bff52990e
7 changed files with 26 additions and 8 deletions
|
@ -153,7 +153,8 @@ function display_content(&$a) {
|
|||
}
|
||||
if($item['last-child']) {
|
||||
$comment = replace_macros($cmnt_tpl,array(
|
||||
'$return_path' => '', // $_SESSION['return_url'],
|
||||
'$return_path' => '',
|
||||
'$jsreload' => $_SESSION['return_url'],
|
||||
'$type' => 'wall-comment',
|
||||
'$id' => $item['item_id'],
|
||||
'$parent' => $item['parent'],
|
||||
|
|
11
mod/item.php
11
mod/item.php
|
@ -496,10 +496,17 @@ function item_post(&$a) {
|
|||
}
|
||||
}
|
||||
|
||||
if((x($_POST,'return')) && strlen($_POST['return']))
|
||||
logger('post_complete');
|
||||
if((x($_POST,'return')) && strlen($_POST['return'])) {
|
||||
logger('return: ' . $_POST['return']);
|
||||
goaway($a->get_baseurl() . "/" . $_POST['return'] );
|
||||
|
||||
}
|
||||
$json = array('success' => 1);
|
||||
if(x($_POST,'jsreload') && strlen($_POST['jsreload']))
|
||||
$json['reload'] = $a->get_baseurl() . '/' . $_POST['jsreload'];
|
||||
|
||||
logger('post_json: ' . print_r($json,true), LOGGER_DEBUG);
|
||||
|
||||
echo json_encode($json);
|
||||
killme();
|
||||
// NOTREACHED
|
||||
|
|
|
@ -340,7 +340,8 @@ function network_content(&$a, $update = 0) {
|
|||
|
||||
if($item['last-child']) {
|
||||
$comment = replace_macros($cmnt_tpl,array(
|
||||
'$return_path' => '', // $_SESSION['return_url'],
|
||||
'$return_path' => '',
|
||||
'$jsreload => '', // $_SESSION['return_url'],
|
||||
'$type' => 'net-comment',
|
||||
'$id' => $item['item_id'],
|
||||
'$parent' => $item['parent'],
|
||||
|
|
|
@ -1048,7 +1048,8 @@ function photos_content(&$a) {
|
|||
if($can_post || can_write_wall($a,$owner_uid)) {
|
||||
if($link_item['last-child']) {
|
||||
$o .= replace_macros($cmnt_tpl,array(
|
||||
'$return_path' => '', // $return_url,
|
||||
'$return_path' => '',
|
||||
'$jsreload' => $return_url,
|
||||
'$type' => 'wall-comment',
|
||||
'$id' => $link_item['id'],
|
||||
'$parent' => $link_item['id'],
|
||||
|
@ -1087,7 +1088,8 @@ function photos_content(&$a) {
|
|||
if($can_post || can_write_wall($a,$owner_uid)) {
|
||||
if($link_item['last-child']) {
|
||||
$o .= replace_macros($cmnt_tpl,array(
|
||||
'$return_path' => $return_url,
|
||||
'$return_path' => '',
|
||||
'$jsreload' => $return_url,
|
||||
'$type' => 'wall-comment',
|
||||
'$id' => $link_item['id'],
|
||||
'$parent' => $link_item['id'],
|
||||
|
@ -1115,7 +1117,8 @@ function photos_content(&$a) {
|
|||
|
||||
if($item['last-child']) {
|
||||
$comment = replace_macros($cmnt_tpl,array(
|
||||
'$return_path' => $return_url,
|
||||
'$return_path' => '',
|
||||
'$jsreload' => $return_url,
|
||||
'$type' => 'wall-comment',
|
||||
'$id' => $item['item_id'],
|
||||
'$parent' => $item['parent'],
|
||||
|
|
|
@ -293,7 +293,8 @@ function profile_content(&$a, $update = 0) {
|
|||
}
|
||||
if($item['last-child']) {
|
||||
$comment = replace_macros($cmnt_tpl,array(
|
||||
'$return_path' => '', // $_SESSION['return_url'],
|
||||
'$return_path' => '',
|
||||
'$jsreload' => '', // $_SESSION['return_url'],
|
||||
'$type' => 'wall-comment',
|
||||
'$id' => $item['item_id'],
|
||||
'$parent' => $item['parent'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue