Commit 8d026839ecb95170f20a65d6a048111432a29ecf

Authored by totoro
1 parent 086ff2f7

remove get_Bool with Maybe(Bool) return. It was bad idea. No application are affected

Showing 2 changed files with 3 additions and 2 deletions   Show diff stats
database/db_types.anubis
... ... @@ -6,6 +6,7 @@
6 6 *
7 7 */
8 8 transmit tools/basis.anubis
  9 +transmit tools/ISO-8601.anubis
9 10  
10 11 public type DB_id:
11 12 none,
... ... @@ -91,7 +92,7 @@ public define Maybe(DB_datetime)
91 92 public define DB_datetime
92 93 now
93 94 =
94   - _Int_to_ISO_8601_datetime(now).
  95 + db_datetime(_Int_to_ISO_8601_datetime(now)).
95 96  
96 97  
97 98 public define Maybe(DB_time)
... ...
web/CXM_web_arg_utils.anubis
... ... @@ -103,7 +103,7 @@ public define Bool
103 103 found(_) then true
104 104 }.
105 105  
106   -public define Maybe(Bool)
  106 + public define Maybe(Bool)
107 107 get_Bool
108 108 (
109 109 List(Web_arg) lwa,
... ...