cf63e3fd by Jeremy Groot

fix to circulars loading from subject and name

1 parent 81b06811
...@@ -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
......