Skip to content
This repository was archived by the owner on Aug 1, 2021. It is now read-only.

Commit 95e5ea7

Browse files
update framework
1 parent 4a7fbf9 commit 95e5ea7

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

composer.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/composer/installed.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -114,25 +114,25 @@
114114
},
115115
{
116116
"name": "wp-content-framework/admin",
117-
"version": "v0.0.28",
118-
"version_normalized": "0.0.28.0",
117+
"version": "v0.0.29",
118+
"version_normalized": "0.0.29.0",
119119
"source": {
120120
"type": "git",
121121
"url": "https://github.com/wp-content-framework/admin.git",
122-
"reference": "bf924fa69886e04d897ceb94991ca85b00b90f5b"
122+
"reference": "ca74b0c62b352f2e7bb993865eccdf484a6546b4"
123123
},
124124
"dist": {
125125
"type": "zip",
126-
"url": "https://api.github.com/repos/wp-content-framework/admin/zipball/bf924fa69886e04d897ceb94991ca85b00b90f5b",
127-
"reference": "bf924fa69886e04d897ceb94991ca85b00b90f5b",
126+
"url": "https://api.github.com/repos/wp-content-framework/admin/zipball/ca74b0c62b352f2e7bb993865eccdf484a6546b4",
127+
"reference": "ca74b0c62b352f2e7bb993865eccdf484a6546b4",
128128
"shasum": ""
129129
},
130130
"require": {
131131
"php": ">=5.6.0",
132132
"wp-content-framework/controller": "~0.0.1",
133133
"wp-content-framework/view": "~0.0.1"
134134
},
135-
"time": "2019-04-18T13:36:45+00:00",
135+
"time": "2019-04-20T17:05:07+00:00",
136136
"type": "library",
137137
"installation-source": "dist",
138138
"notification-url": "https://packagist.org/downloads/",

vendor/wp-content-framework/admin/src/traits/dashboard.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* WP_Framework_Admin Traits Dashboard
44
*
5-
* @version 0.0.28
5+
* @version 0.0.29
66
* @author Technote
77
* @copyright Technote All Rights Reserved
88
* @license http://www.opensource.org/licenses/gpl-2.0.php GNU General Public License, version 2
@@ -107,7 +107,10 @@ protected function post_action() {
107107
* before update
108108
*/
109109
protected function before_update() {
110-
110+
// support v0.0.24 - v0.0.27
111+
if ( method_exists( $this, 'pre_update' ) ) {
112+
$this->pre_update();
113+
}
111114
}
112115

113116
/**

0 commit comments

Comments
 (0)