Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
forena
Commits
29433f67
Commit
29433f67
authored
Sep 30, 2014
by
David Metzler
Browse files
Notice fix
parent
1194aba4
Changes
1
Hide whitespace changes
Inline
Side-by-side
FrxFile.inc
View file @
29433f67
...
...
@@ -154,8 +154,6 @@ class FrxFile {
*/
public
function
validateAllCache
(
$prefix
=
''
)
{
// Make sure once per session.
if
(
$this
->
validated
)
return
;
// Load data form the cache
if
(
!
$this
->
cache
)
{
$cache
=
cache_get
(
$this
->
cacheKey
,
'cache'
);
if
(
$cache
)
{
...
...
@@ -163,6 +161,9 @@ class FrxFile {
}
$this
->
needSave
=
FALSE
;
}
// Skip extra stuff after we've validated once.
if
(
$this
->
validated
)
return
;
// Load data form the cache
// Save current paths away.
$this
->
setFilesToDelete
();
$this
->
scan
(
$prefix
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment