Skip to content

Commit

Permalink
20180126
Browse files Browse the repository at this point in the history
  • Loading branch information
cdukes committed Jan 26, 2018
1 parent 895528f commit 0965ba3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## 20180126
- Enable `secure_signon_cookie` by default
- Require `composer` by default

## 20180125
- Readme

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -13,7 +13,7 @@ You'll need [Node.js](http://nodejs.org/).
```
git clone https://github.com/cdukes/bones-for-genesis-2-0.git genesis-bfg
cd genesis-bfg
npm install
composer install && npm install
```

Watch:
Expand Down
1 change: 0 additions & 1 deletion composer.json
@@ -1,5 +1,4 @@
{
"name": "cdukes/bones-for-genesis-2-0",
"require": {
"roave/security-advisories": "dev-master"
}
Expand Down
3 changes: 3 additions & 0 deletions functions.php
Expand Up @@ -10,6 +10,9 @@
define( 'CHILD_THEME_URL', 'http://bonesforgenesis.com/' );
define( 'CHILD_THEME_TEXT_DOMAIN', 'bfg' );

// Composer
require_once CHILD_DIR . '/vendor/autoload.php';

// Developer Tools
require_once CHILD_DIR . '/includes/developer-tools.php';

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/admin-functions.php
Expand Up @@ -148,4 +148,4 @@ function bfg_remove_files_on_upgrade() {
*
* @since 20170608
*/
// add_filter( 'secure_signon_cookie', '__return_true' );
add_filter( 'secure_signon_cookie', '__return_true' );

0 comments on commit 0965ba3

Please sign in to comment.