silence some warnings at php E_ALL levels
This commit is contained in:
parent
7b27add546
commit
b4bd518e40
@ -394,7 +394,9 @@ function visible_activity($item) {
|
||||
function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') {
|
||||
|
||||
$tstart = dba_timer();
|
||||
$t0 = $t1 = $t2 = $t3 = $t4 = $t5 = $t6 = null;
|
||||
$content_html = '';
|
||||
$o = '';
|
||||
|
||||
require_once('bbcode.php');
|
||||
|
||||
|
@ -49,7 +49,7 @@ class FriendicaSmartyEngine implements ITemplateEngine {
|
||||
|
||||
public function __construct(){
|
||||
$a = get_app();
|
||||
$basecompiledir = $a->config['system']['smarty3_folder'];
|
||||
$basecompiledir = ((array_key_exists('smarty3_folder',$a->config['system'])) ? $a->config['system']['smarty3_folder'] : '');
|
||||
if (!$basecompiledir) $basecompiledir = dirname(__dir__)."/view/tpl/smarty3";
|
||||
if (!is_dir($basecompiledir)) {
|
||||
echo "<b>ERROR:</b> folder <tt>$basecompiledir</tt> does not exist."; killme();
|
||||
|
@ -325,9 +325,9 @@ function network_content(&$a, $update = 0, $load = false) {
|
||||
|
||||
|
||||
// save selected tab, but only if not in search or file mode
|
||||
if(!x($_GET,'search') && !x($_GET,'file')) {
|
||||
set_pconfig( local_user(), 'network.view','tab.selected',array($all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active) );
|
||||
}
|
||||
// if(!x($_GET,'search') && !x($_GET,'file')) {
|
||||
// set_pconfig( local_user(), 'network.view','tab.selected',array($all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active) );
|
||||
// }
|
||||
|
||||
|
||||
$contact_id = $a->cid;
|
||||
@ -500,7 +500,7 @@ function network_content(&$a, $update = 0, $load = false) {
|
||||
'$nouveau' => (($nouveau) ? $nouveau : '0'),
|
||||
'$wall' => '0',
|
||||
'$page' => (($a->pager['page'] != 1) ? $a->pager['page'] : 1),
|
||||
'$search' => $search,
|
||||
'$search' => (($search) ? $search : ''),
|
||||
'$order' => $order,
|
||||
'$file' => $file,
|
||||
'$cats' => '',
|
||||
@ -641,6 +641,8 @@ function network_content(&$a, $update = 0, $load = false) {
|
||||
$first = dba_timer();
|
||||
|
||||
// Then fetch all the children of the parents that are on this page
|
||||
$parents_str = '';
|
||||
$update_unseen = '';
|
||||
|
||||
if($r) {
|
||||
|
||||
@ -699,7 +701,7 @@ function network_content(&$a, $update = 0, $load = false) {
|
||||
$sixth = dba_timer();
|
||||
|
||||
|
||||
if(! $update)
|
||||
if(($items) && (! $update))
|
||||
$o .= alt_pager($a,count($items));
|
||||
|
||||
if($load) {
|
||||
|
@ -11,7 +11,7 @@ function update_network_content(&$a) {
|
||||
$load = (((argc() > 1) && (argv(1) == 'load')) ? 1 : 0);
|
||||
header("Content-type: text/html");
|
||||
echo "<!DOCTYPE html><html><body>\r\n";
|
||||
echo (($_GET['msie'] == 1) ? '<div>' : '<section>');
|
||||
echo ((array_key_exists('msie',$_GET) && $_GET['msie'] == 1) ? '<div>' : '<section>');
|
||||
|
||||
|
||||
$text = network_content($a,$profile_uid, $load);
|
||||
@ -32,7 +32,7 @@ function update_network_content(&$a) {
|
||||
}
|
||||
|
||||
echo str_replace("\t",' ',$text);
|
||||
echo (($_GET['msie'] == 1) ? '</div>' : '</section>');
|
||||
echo ((array_key_exists('msie',$_GET) && $_GET['msie'] == 1) ? '</div>' : '</section>');
|
||||
echo "</body></html>\r\n";
|
||||
// logger('update_network: ' . $text);
|
||||
killme();
|
||||
|
@ -1,9 +1,5 @@
|
||||
<?php
|
||||
|
||||
function redbasic_init(&$a) {
|
||||
if($a->config['system']['theme_engine'])
|
||||
$a->set_template_engine($a->config['system']['theme_engine']);
|
||||
else
|
||||
$a->set_template_engine('smarty3');
|
||||
// head_add_js('redbasic.js');
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user