kolber / stacey

Cheap & easy content management
http://staceyapp.com
MIT License
1.04k stars 132 forks source link

feedback when search results are not found #149

Closed zachkrall closed 8 years ago

zachkrall commented 8 years ago

I added this below line 87 of "cache.inc.php"

   if (empty($store)){
        echo 'no results found';
    } else {
    return $store;
    }

but this results in the string printing several times, not too familiar with these types of operators in php yet but I am not sure where to go next