<option name="autoReloadType" value="SELECTIVE" />
</component>
<component name="ChangeListManager">
- <list default="true" id="530ffb50-16c9-4bb3-ad22-e76f531eb78c" name="Default" comment="wip #7264 @2">
- <change beforePath="$PROJECT_DIR$/.docker/production/docker-compose.yml" beforeDir="false" afterPath="$PROJECT_DIR$/.docker/production/docker-compose.yml" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/.docker/production/update" beforeDir="false" afterPath="$PROJECT_DIR$/.docker/production/update" afterDir="false" />
+ <list default="true" id="530ffb50-16c9-4bb3-ad22-e76f531eb78c" name="Default" comment="wip #7257 @3">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/framework/application/Bootstrap.php" beforeDir="false" afterPath="$PROJECT_DIR$/framework/application/Bootstrap.php" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/framework/application/configs/application.ini" beforeDir="false" afterPath="$PROJECT_DIR$/framework/application/configs/application.ini" afterDir="false" />
+ <change beforePath="$PROJECT_DIR$/framework/library/CubeIT/Application.php" beforeDir="false" afterPath="$PROJECT_DIR$/framework/library/CubeIT/Application.php" afterDir="false" />
<change beforePath="$PROJECT_DIR$/framework/library/CubeIT/Bootstrap/Navigation.php" beforeDir="false" afterPath="$PROJECT_DIR$/framework/library/CubeIT/Bootstrap/Navigation.php" afterDir="false" />
- <change beforePath="$PROJECT_DIR$/less/104-nav.less" beforeDir="false" afterPath="$PROJECT_DIR$/less/104-nav.less" afterDir="false" />
+ <change beforePath="$PROJECT_DIR$/framework/library/CubeIT/Db/Select/Cache.php" beforeDir="false" afterPath="$PROJECT_DIR$/framework/library/CubeIT/Db/Select/Cache.php" afterDir="false" />
+ <change beforePath="$PROJECT_DIR$/framework/library/CubeIT/Form/CMSBase.php" beforeDir="false" afterPath="$PROJECT_DIR$/framework/library/CubeIT/Form/CMSBase.php" afterDir="false" />
+ <change beforePath="$PROJECT_DIR$/framework/library/CubeIT/Navigation/Page.php" beforeDir="false" afterPath="$PROJECT_DIR$/framework/library/CubeIT/Navigation/Page.php" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<workItem from="1739209041347" duration="1137000" />
<workItem from="1739539005844" duration="4288000" />
<workItem from="1739788502594" duration="628000" />
- <workItem from="1739800972227" duration="5782000" />
+ <workItem from="1739800972227" duration="8566000" />
</task>
<task id="LOCAL-00117" summary="fix #1407 @1">
<created>1494411210038</created>
<option name="project" value="LOCAL" />
<updated>1682409989659</updated>
</task>
- <option name="localTasksCounter" value="175" />
+ <option name="localTasksCounter" value="176" />
<servers>
<Redmine shared="true" url="https://team.cubedesigners.com/redmine">
<option name="APIKey" value="ee454486fcd47aa38e5c99d5a7dc44cff1f65597" />
<component name="VcsManagerConfiguration">
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
<option name="CHECK_NEW_TODO" value="false" />
- <MESSAGE value="wait #3669 @0.5" />
<MESSAGE value="wait #3693 @2" />
<MESSAGE value="fix #3701 @0:05" />
<MESSAGE value="wip #3703 @0.75" />
<MESSAGE value="." />
<MESSAGE value="wait #7244 @1" />
<MESSAGE value="wip #7257 @0.75" />
- <option name="LAST_COMMIT_MESSAGE" value="wip #7257 @0.75" />
+ <MESSAGE value="wip #7257 @3" />
+ <option name="LAST_COMMIT_MESSAGE" value="wip #7257 @3" />
<option name="NON_MODAL_COMMIT_POSTPONE_SLOW_CHECKS" value="false" />
</component>
<component name="XDebuggerManager">
}
protected function _fetch($fetchFunc = 'fetchAll', $cacheTags = array(), $cacheSpecificLifetime = false, $fetchMode = null, $bind = array()) {
- $id = sha1($this->assemble() . $fetchMode . json_encode($bind) . $fetchFunc);
- if (($res = $this->_cache->load($id)) === false) {
- $res = $this->query($fetchMode, $bind)->$fetchFunc();
- $this->_cache->save($res, $id, $cacheTags, $cacheSpecificLifetime);
- }
- return $res;
+ return $this->query($fetchMode, $bind)->$fetchFunc();
+
}
}