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:
@@ -44,7 +44,7 @@ class ProcessWire extends Wire {
|
||||
* Reversion revision number
|
||||
*
|
||||
*/
|
||||
const versionRevision = 127;
|
||||
const versionRevision = 128;
|
||||
|
||||
/**
|
||||
* Version suffix string (when applicable)
|
||||
|
@@ -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) {
|
||||
|
@@ -59,3 +59,7 @@
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.pw-search-list .pw-wiretabs-item {
|
||||
padding-top: 1em;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user