/**
  * will quote the strings of the passed in array
  * The array must only contain strings
  *
  * @param ARRAY $array
  * @param unknown_type $isLike
  */
 function arrayQuote(&$array, $isLike = true)
 {
     for ($i = 0; $i < count($array); $i++) {
         $array[$i] = MysqlManager::quote($array[$i], $isLike);
     }
 }