Skip to content

Commit

Permalink
Bug fix for ticket #58
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisJordan committed Feb 4, 2009
1 parent ff2686a commit a080af9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<p>
<label for="title">{{fieldNameEnglish}}</label><br />
<label>{{fieldNameEnglish}}</label><br />
<?php $_form->input('{{fieldName}}'); ?>
</p>
4 changes: 2 additions & 2 deletions recess/lib/recess/lang/RecessReflectionClass.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* @link http://www.recessframework.org/
*/
class RecessReflectionClass extends ReflectionClass {
function getProperties($filter = '') {
function getProperties($filter = null) {
Library::import('recess.lang.RecessReflectionProperty');
$rawProperties = parent::getProperties($filter);
$rawProperties = parent::getProperties();
$properties = array();
foreach($rawProperties as $rawProperty) {
$properties[] = new RecessReflectionProperty($this->name, $rawProperty->name);
Expand Down

0 comments on commit a080af9

Please sign in to comment.