1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-08 07:47:00 +02:00

Bump version to 3.0.128

This commit is contained in:
Ryan Cramer
2019-03-29 15:34:22 -04:00
parent d9ab9c56d5
commit b87404ade8
3 changed files with 10 additions and 1 deletions

View File

@@ -44,7 +44,7 @@ class ProcessWire extends Wire {
* Reversion revision number
*
*/
const versionRevision = 127;
const versionRevision = 128;
/**
* Version suffix string (when applicable)

View File

@@ -641,6 +641,11 @@ class WireHooks {
$cacheValue = $options['type'] == 'method' ? "$method()" : "$method";
if($options['fromClass']) $this->hookClassMethodCache["$options[fromClass]::$cacheValue"] = true;
$this->hookMethodCache[$cacheValue] = true;
if($options['type'] === 'either') {
$cacheValue = "$cacheValue()";
$this->hookMethodCache[$cacheValue] = true;
if($options['fromClass']) $this->hookClassMethodCache["$options[fromClass]::$cacheValue"] = true;
}
// keep track of all local hooks combined when debug mode is on
if($local && $this->config->debug) {

View File

@@ -59,3 +59,7 @@
opacity: 0.3;
}
.pw-search-list .pw-wiretabs-item {
padding-top: 1em;
}