mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 08:58:49 +00:00
Replace and/AND and or/OR by && and ||
This commit is contained in:
parent
844de15593
commit
8fa3f2415a
23 changed files with 268 additions and 269 deletions
|
@ -85,7 +85,7 @@
|
|||
if ($callback_url) $this->set_callback_url($callback_url);
|
||||
if ($access_token) $this->access_token = $access_token;
|
||||
|
||||
if (isset($_GET['code']) AND $_GET['code']) {
|
||||
if (isset($_GET['code']) && $_GET['code']) {
|
||||
$this->code = $_GET['code'];
|
||||
$this->create_access_token_url();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue