Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
Dwoo
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Common
Dwoo
Commits
ad60ed1a
Commit
ad60ed1a
authored
Mar 02, 2010
by
seldaek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing default compile/cache dirs, fixes #58
git-svn-id:
http://svn.dwoo.org/trunk@344
0598d79b-80c4-4d41-97ba-ac86fbbd088b
parent
9315dcc8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Core.php
lib/Dwoo/Core.php
+2
-2
No files found.
lib/Dwoo/Core.php
View file @
ad60ed1a
...
...
@@ -642,7 +642,7 @@ class Dwoo_Core
public
function
getCacheDir
()
{
if
(
$this
->
cacheDir
===
null
)
{
$this
->
setCacheDir
(
dirname
(
__FILE__
)
.
DIRECTORY_SEPARATOR
.
'cache'
.
DIRECTORY_SEPARATOR
);
$this
->
setCacheDir
(
DWOO_DIRECTORY
.
'cache'
.
DIRECTORY_SEPARATOR
);
}
return
$this
->
cacheDir
;
...
...
@@ -669,7 +669,7 @@ class Dwoo_Core
public
function
getCompileDir
()
{
if
(
$this
->
compileDir
===
null
)
{
$this
->
setCompileDir
(
dirname
(
__FILE__
)
.
DIRECTORY_SEPARATOR
.
'compiled'
.
DIRECTORY_SEPARATOR
);
$this
->
setCompileDir
(
DWOO_DIRECTORY
.
'compiled'
.
DIRECTORY_SEPARATOR
);
}
return
$this
->
compileDir
;
...
...
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