Skip to content

Commit

Permalink
Add quotes to '--portnumber--' to avoid errors in local-settings
Browse files Browse the repository at this point in the history
When you copy setting example now this return a error because --portnumber-- no have quotes
  • Loading branch information
pabloveintimilla committed Dec 12, 2014
1 parent 5d1aedf commit 7270806
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config.php
@@ -1,6 +1,6 @@
<?php
/*
* Copyright (C) 2012 Platoniq y Fundaci�n Fuentes Abiertas (see README for details)
* Copyright (C) 2012 Platoniq y Fundacion Fuentes Abiertas (see README for details)
* This file is part of Goteo.
*
* Goteo is free software: you can redistribute it and/or modify
Expand Down Expand Up @@ -106,7 +106,7 @@
define('GOTEO_MAIL_SMTP_AUTH', true);
define('GOTEO_MAIL_SMTP_SECURE', 'ssl');
define('GOTEO_MAIL_SMTP_HOST', 'smtp--host');
define('GOTEO_MAIL_SMTP_PORT', --portnumber--);
define('GOTEO_MAIL_SMTP_PORT', '--portnumber--');
define('GOTEO_MAIL_SMTP_USERNAME', 'smtp-usermail');
define('GOTEO_MAIL_SMTP_PASSWORD', 'smtp-password');
Expand Down

0 comments on commit 7270806

Please sign in to comment.