issues from hubzilla:#737

This commit is contained in:
zotlabs 2017-04-26 19:47:05 -07:00
parent b88be137ca
commit 6fcfab3488
4 changed files with 18 additions and 7 deletions

View File

@ -83,7 +83,7 @@ class DB_Upgrade {
file_put_contents($lockfile, $x);
$r = q("select account_language from account where account_email = '%s' limit 1",
dbesc(App::$config['system']['admin_email'])
dbesc(\App::$config['system']['admin_email'])
);
push_lang(($r) ? $r[0]['account_language'] : 'en');

View File

@ -101,11 +101,11 @@ class NativeWiki {
static public function sync_a_wiki_item($uid,$id,$resource_id) {
$r = q("SELECT * from item WHERE uid = %d AND ( id = %d OR ( resource_type = '%s' and resource_id = %d )) ",
$r = q("SELECT * from item WHERE uid = %d AND ( id = %d OR ( resource_type = '%s' and resource_id = '%s' )) ",
intval($uid),
intval($id),
dbesc(NWIKI_ITEM_RESOURCE_TYPE),
intval($resource_id)
dbesc($resource_id)
);
if($r) {
xchan_query($r);

View File

@ -21,12 +21,23 @@ class NativeWikiPage {
$sql_extra = item_permissions_sql($channel_id,$observer_hash);
$r = q("select * from item where resource_type = 'nwikipage' and resource_id = '%s' and uid = %d and item_deleted = 0
$sql_extra group by mid order by created asc",
$sql_extra order by created asc",
dbesc($resource_id),
intval($channel_id)
);
if($r) {
$items = fetch_post_tags($r,true);
$x = [];
$y = [];
foreach($r as $rv) {
if(! in_array($rv['mid'],$x)) {
$y[] = $rv;
$x[] = $rv['mid'];
}
}
$items = fetch_post_tags($y,true);
foreach($items as $page_item) {
$title = get_iconfig($page_item['id'],'nwikipage','pagetitle',t('(No Title)'));
if(urldecode($title) !== 'Home') {

View File

@ -2512,8 +2512,8 @@ function update_r1187() {
function update_r1188() {
$r1 = q("alter table channel add channel_password varchar(255) not null ");
$r2 = q("alter table channel add channel_salt varchar(255) not null ");
$r1 = q("alter table channel add channel_password varchar(255) not null default '' ");
$r2 = q("alter table channel add channel_salt varchar(255) not null default '' ");
if($r1 && $r2)
return UPDATE_SUCCESS;