Changeset 13426
- Timestamp:
- 11/14/07 21:12:22 (10 months ago)
- Files:
-
- trunk/midcom/midcom.core/midcom/baseclasses/components/interface.php (modified) (2 diffs)
- trunk/midcom/midcom.core/midcom/baseclasses/core/dbobject.php (modified) (1 diff)
- trunk/midcom/midcom.helper.datamanager/datatype_account.php (modified) (1 diff)
- trunk/midcom/midcom.helper.datamanager/datatype_collection.php (modified) (1 diff)
- trunk/midcom/midcom.helper.datamanager/datatype_mailtemplate.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/midcom.core/midcom/baseclasses/components/interface.php
r13424 r13426 787 787 * 788 788 * If the guid could be successfully resolved, a URL local to the given topic without a 789 * leading slash must be returned (f.x. 'article.html'), em tpy strings ('') are allowed789 * leading slash must be returned (f.x. 'article.html'), empty strings ('') are allowed 790 790 * indicating root page access. If the GUID is invalid, null will be returned. 791 791 * … … 1003 1003 * 1004 1004 * If the guid could be successfully resolved, a URL local to the given topic without a 1005 * leading slash must be returned (f.x. 'article.html'), em tpy strings ('') are allowed1005 * leading slash must be returned (f.x. 'article.html'), empty strings ('') are allowed 1006 1006 * indicating root page access. If the GUID is invalid, null will be returned. 1007 1007 * trunk/midcom/midcom.core/midcom/baseclasses/core/dbobject.php
r13297 r13426 1436 1436 * 1437 1437 * Current implementation note: Deletion is not yet implemented in MgdSchema. 1438 * Therefore we set the parameters to an em tpy string for now, which should1438 * Therefore we set the parameters to an empty string for now, which should 1439 1439 * have almost the same effect for most cases and thus is good enough for now. 1440 1440 * Note, that empty string parameters are filtered in the getter methods until trunk/midcom/midcom.helper.datamanager/datatype_account.php
r12585 r13426 93 93 } 94 94 95 if ($this->_password_was_em tpy && $this->_enable_crypt)95 if ($this->_password_was_empty && $this->_enable_crypt) 96 96 { 97 97 debug_add("Don't do anything, the password is empty and crypt was enabled, we cannot update the username this way. Failing gracefully."); trunk/midcom/midcom.helper.datamanager/datatype_collection.php
r13129 r13426 58 58 if (is_null ($this->_storage)) 59 59 { 60 debug_add("The storage object is null, can't do anything except adding an em tpy field.", MIDCOM_LOG_WARN);60 debug_add("The storage object is null, can't do anything except adding an empty field.", MIDCOM_LOG_WARN); 61 61 } 62 62 else trunk/midcom/midcom.helper.datamanager/datatype_mailtemplate.php
r11907 r13426 113 113 } 114 114 115 function is_em tpy()115 function is_empty() 116 116 { 117 117 return ( strlen($this->_data["from"]) == 0
