Merge remote-tracking branch 'mike/master' into dev
This commit is contained in:
commit
b438ffead4
@ -94,8 +94,7 @@ class Acl extends \Zotlabs\Web\Controller {
|
||||
. " then POSITION('" . protect_sprintf(dbesc($search))
|
||||
. "' IN xchan_name) else position('" . protect_sprintf(dbesc(punify($search))) . "' IN xchan_addr) end, ";
|
||||
|
||||
$col = ((strpos($search,'@') !== false) ? 'xchan_addr' : 'xchan_name' );
|
||||
$sql_extra3 = "AND $col like " . protect_sprintf( "'%" . dbesc(($col === 'xchan_addr') ? punify($search) : $search) . "%'" ) . " ";
|
||||
$sql_extra3 = "AND ( xchan_addr like " . protect_sprintf( "'%" . dbesc(punify($search)) . "%'" ) . " OR xchan_name like " . protect_sprintf( "'%" . dbesc($search) . "%'" ) . " ) ";
|
||||
|
||||
}
|
||||
else {
|
||||
|
@ -559,7 +559,7 @@ function get_widget_info($widget){
|
||||
|
||||
$checkpaths = [
|
||||
"Zotlabs/SiteWidget/$ucwidget.php",
|
||||
"Zotlibs/Widget/$ucwidget.php",
|
||||
"Zotlabs/Widget/$ucwidget.php",
|
||||
"addon/$ucwidget/$ucwidget.php",
|
||||
"addon/$widget.php"
|
||||
];
|
||||
|
Reference in New Issue
Block a user