OSDN Git Service

Fix Bug#7664
authorhalt1983 <halt1983@2ef88817-412d-0410-a32c-8029a115e976>
Sat, 25 Feb 2006 06:13:01 +0000 (06:13 +0000)
committerhalt1983 <halt1983@2ef88817-412d-0410-a32c-8029a115e976>
Sat, 25 Feb 2006 06:13:01 +0000 (06:13 +0000)
CHANGES
Ethna.php
class/Ethna_AppObject.php

diff --git a/CHANGES b/CHANGES
index 7a5f01d..4b58b07 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,7 @@
 *** bug fixes
 
 - [[#7717>http://sourceforge.jp/tracker/index.php?func=detail&aid=7717&group_id=1343&atid=5092]](Ethna_AppObject::add()¤ÇNotice)¤ò½¤Àµ
+- [[#7664>http://sourceforge.jp/tracker/index.php?func=detail&aid=7664&group_id=1343&atid=5092]](Ethna_AppObject¤Î¥Ð¥°)¤ò½¤Àµ
 
 ** [2006/01/29] 0.2.0
 
index df1772c..f78d75a 100644 (file)
--- a/Ethna.php
+++ b/Ethna.php
@@ -38,7 +38,7 @@ if (!defined('DIRECTORY_SEPARATOR')) {
 }
 
 /** ¥Ð¡¼¥¸¥ç¥óÄêµÁ */
-define('ETHNA_VERSION', '0.2.0-dev');
+define('ETHNA_VERSION', '2.0.1-dev');
 
 /** Ethna¥Ù¡¼¥¹¥Ç¥£¥ì¥¯¥È¥êÄêµÁ */
 define('ETHNA_BASE', dirname(__FILE__));
index fee61b1..7e2a481 100644 (file)
@@ -893,7 +893,7 @@ class Ethna_AppObject
                        if (is_null($condition)) {
                                $condition = "WHERE ";
                        } else {
-                               $condition = " AND ";
+                               $condition .= " AND ";
                        }
                        $v = $this->prop_backup[$k];    // equals to $this->id
                        Ethna_AppSQL::escapeSQL($v);