modified:changes made to fix ' sign in title n desription
This commit is contained in:
parent
c4ca54173d
commit
fcbadea854
1 changed files with 8 additions and 1 deletions
|
@ -476,10 +476,17 @@ class CBvideo extends CBCategory
|
|||
$query_val[] = $array['embed_code'];
|
||||
}
|
||||
}
|
||||
//changes made
|
||||
//title index
|
||||
$query_val[0] = str_replace('<!--', '', $query_val[0]);
|
||||
$query_val[0] = str_replace("'", "’", $query_val[0]);
|
||||
//description index
|
||||
$query_val[1] = str_replace('<!--', '', $query_val[1]);
|
||||
$query_val[1] = str_replace("'", "’", $query_val[1]);
|
||||
//Tag index
|
||||
$query_val[3] = strtolower($query_val[3]);
|
||||
|
||||
// $query_val[3] = str_replace("'", "’", $query_val[3]);
|
||||
//changes made
|
||||
|
||||
|
||||
if(!userid())
|
||||
|
|
Loading…
Add table
Reference in a new issue