mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 07:56:16 -04:00
Merge pull request #2373 from webzwo0i/avoid-global-vairables
dont make local variables global
This commit is contained in:
commit
cfa3f15f94
11 changed files with 14 additions and 14 deletions
|
@ -56,7 +56,7 @@ exports.restartServer = function () {
|
|||
console.log( "SSL -- server key file: " + settings.ssl.key );
|
||||
console.log( "SSL -- Certificate Authority's certificate file: " + settings.ssl.cert );
|
||||
|
||||
options = {
|
||||
var options = {
|
||||
key: fs.readFileSync( settings.ssl.key ),
|
||||
cert: fs.readFileSync( settings.ssl.cert )
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue