Skip to content
GitLab
About GitLab
GitLab: the DevOps platform
Explore GitLab
Install GitLab
How GitLab compares
Get started
GitLab docs
GitLab Learn
Pricing
Talk to an expert
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Projects
Groups
Snippets
Sign up now
Login
Sign in
Toggle navigation
Menu
Open sidebar
project
provision
Commits
edf05639
Commit
edf05639
authored
Sep 09, 2015
by
Jon Pugh
Browse files
using quotes for array keys
parent
77eddf94
Changes
1
Hide whitespace changes
Inline
Side-by-side
http/Provision/Service/http/ssl.php
View file @
edf05639
...
...
@@ -164,7 +164,7 @@ class Provision_Service_http_ssl extends Provision_Service_http_public {
* @return the path to the receipt file if allocation succeeded
*/
static
function
assign_certificate_site
(
$ssl_key
,
$site
)
{
$path
=
$site
->
data
[
server
]
->
http_ssld_path
.
"/"
.
$ssl_key
.
"/"
.
$site
->
uri
.
".receipt"
;
$path
=
$site
->
data
[
'
server
'
]
->
http_ssld_path
.
"/"
.
$ssl_key
.
"/"
.
$site
->
uri
.
".receipt"
;
drush_log
(
dt
(
"registering site %site with SSL certificate %key with receipt file %path"
,
array
(
"%site"
=>
$site
->
uri
,
"%key"
=>
$ssl_key
,
"%path"
=>
$path
)));
if
(
touch
(
$path
))
{
return
$path
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment