Changes between Version 12 and Version 13 of TaiwanSettings
- Timestamp:
- 11/12/10 06:34:03 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TaiwanSettings
v12 v13 74 74 * Edit Gateway Setting. 75 75 * Patch `eden/modules/s3msg.py`. 76 {{{ 77 # Italy keeps 0 after country code 78 clean = str(self.default_country_code) + clean 79 elif self.default_country_code == 886: 80 clean = clean 81 else: 82 }}} 83 {{{ 84 def dispatch_to_pe_id(pe_id): 85 table3 = db.pr_pe_contact 86 - query = (table3.pe_id == pe_id) & (table3.contact_method == contact_method) 87 + query = (table3.pe_id == pe_id) & (table3.contact_method == contact_method) & (table3.deleted == False) 88 }}} 76 89 * Edit `eden/cron/crontab`. 77 90