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
fedf474e
Commit
fedf474e
authored
Nov 23, 2008
by
Seldaek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed a weird reference bug with ZF and includes.. whatever but thanks to Denis Arh for the patch
git-svn-id:
svn://dwoo.org/dwoo/trunk@218
0598d79b-80c4-4d41-97ba-ac86fbbd088b
parent
13f4eaae
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
CHANGELOG
CHANGELOG
+2
-0
Dwoo.php
lib/Dwoo.php
+1
-0
Adapter.php
lib/Dwoo/Smarty/Adapter.php
+4
-0
No files found.
CHANGELOG
View file @
fedf474e
...
...
@@ -2,6 +2,8 @@
*
Fixed
a
{
foreach
}
bug
with
the
implode
argument
*
Fixed
modulo
operator
in
if
statements
*
Fixed
date_format
handling
of
negative
and
small
unix
timestamps
*
Fixed
a
weird
reference
bug
with
ZF
and
includes
..
whatever
but
thanks
to
Denis
Arh
for
the
patch
[
2008
-
10
-
23
]
1.0.0
! BC Break: Small one that probably won't affect anyone, but it makes the
...
...
lib/Dwoo.php
View file @
fedf474e
...
...
@@ -263,6 +263,7 @@ class Dwoo
public
function
__clone
()
{
$this
->
template
=
null
;
unset
(
$this
->
data
);
}
/**
...
...
lib/Dwoo/Smarty/Adapter.php
View file @
fedf474e
...
...
@@ -38,6 +38,10 @@ class Dwoo_Smarty__Adapter extends Dwoo
$this
->
scope
=
$v
;
return
;
}
if
(
$p
===
'data'
)
{
$this
->
data
=
$v
;
return
;
}
if
(
array_key_exists
(
$p
,
$this
->
compat
[
'properties'
])
!==
false
)
{
if
(
$this
->
show_compat_errors
)
{
$this
->
triggerError
(
'Property '
.
$p
.
' is not available in the Dwoo_Smarty_Adapter, however it might be implemented in the future, check out http://wiki.dwoo.org/index.php/SmartySupport for more details.'
,
E_USER_NOTICE
);
...
...
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