Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2627273
D25373.1731955464.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
D25373.1731955464.diff
View Options
diff --git a/src/applications/auth/adapter/PhutilOAuth1AuthAdapter.php b/src/applications/auth/adapter/PhutilOAuth1AuthAdapter.php
--- a/src/applications/auth/adapter/PhutilOAuth1AuthAdapter.php
+++ b/src/applications/auth/adapter/PhutilOAuth1AuthAdapter.php
@@ -104,7 +104,7 @@
->setSignatureMethod($this->getSignatureMethod());
$consumer_key = $this->getConsumerKey();
- if (strlen($consumer_key)) {
+ if (phutil_nonempty_string($consumer_key)) {
$future->setConsumerKey($consumer_key);
} else {
throw new Exception(
@@ -118,11 +118,11 @@
$future->setConsumerSecret($consumer_secret);
}
- if (strlen($this->getToken())) {
+ if (phutil_nonempty_string($this->getToken())) {
$future->setToken($this->getToken());
}
- if (strlen($this->getTokenSecret())) {
+ if (phutil_nonempty_string($this->getTokenSecret())) {
$future->setTokenSecret($this->getTokenSecret());
}
@@ -137,7 +137,7 @@
$request_token_uri = $this->getRequestTokenURI();
$future = $this->newOAuth1Future($request_token_uri);
- if (strlen($this->getCallbackURI())) {
+ if (phutil_nonempty_string($this->getCallbackURI())) {
$future->setCallbackURI($this->getCallbackURI());
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Nov 18, 18:44 (11 h, 18 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
976899
Default Alt Text
D25373.1731955464.diff (1 KB)
Attached To
Mode
D25373: Fix PHP 8.1 "strlen(null)" exceptions trying to authenticate via custom OAuth provider
Attached
Detach File
Event Timeline
Log In to Comment