post preview to loozah
This commit is contained in:
@@ -170,6 +170,10 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
|
||||
|
||||
load_contact_links(local_user());
|
||||
|
||||
$cb = array('items' => $items, 'mode' => $mode, 'update' => $update, 'preview' => $preview);
|
||||
call_hooks('conversation_start',$cb);
|
||||
|
||||
$items = $cb['items'];
|
||||
|
||||
$cmnt_tpl = get_markup_template('comment_item.tpl');
|
||||
$tpl = get_markup_template('wall_item.tpl');
|
||||
|
||||
@@ -19,7 +19,7 @@ function uninstall_plugin($plugin){
|
||||
if (! function_exists('install_plugin')){
|
||||
function install_plugin($plugin){
|
||||
logger("Addons: installing " . $plugin);
|
||||
$t = filemtime('addon/' . $plugin . '/' . $plugin . '.php');
|
||||
$t = @filemtime('addon/' . $plugin . '/' . $plugin . '.php');
|
||||
@include_once('addon/' . $plugin . '/' . $plugin . '.php');
|
||||
if(function_exists($plugin . '_install')) {
|
||||
$func = $plugin . '_install';
|
||||
@@ -33,6 +33,10 @@ function install_plugin($plugin){
|
||||
$plugin_admin
|
||||
);
|
||||
}
|
||||
else {
|
||||
logger("Addons: FAILED installing " . $plugin);
|
||||
}
|
||||
|
||||
}}
|
||||
|
||||
// reload all updated plugins
|
||||
|
||||
Reference in New Issue
Block a user