Added missing check in item_t::get_actual

This commit is contained in:
John Wiegley 2009-10-30 06:16:57 -04:00
parent 4bc99310f7
commit f3565495b1

View file

@ -187,7 +187,7 @@ namespace {
}
value_t get_actual(item_t& item) {
return ! item.has_flags(ITEM_GENERATED);
return ! item.has_flags(ITEM_GENERATED | ITEM_TEMP);
}
value_t get_date(item_t& item) {