fix to circulars loading from subject and name
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -16,7 +16,7 @@ function extractCircularDataForCache($data) { | ... | @@ -16,7 +16,7 @@ function extractCircularDataForCache($data) { |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | //Discard non-ciculars | 18 | //Discard non-ciculars |
| 19 | if(stripos($circular->item->Name, 'circular') === false) { | 19 | if(stripos($circular->item->Name, 'circular') === false && stripos($circular->item->Subject, 'circular') === false) { |
| 20 | continue; | 20 | continue; |
| 21 | } | 21 | } |
| 22 | 22 | ... | ... |
-
Please register or sign in to post a comment