|
|
@@ -95,10 +95,11 @@ class Goodimglibrary extends Start_Controller {
|
|
|
|
|
|
foreach($imgs as $k => $v){
|
|
|
$type = $this->_checkVideo($v);
|
|
|
+ $url = $this->_transingurl($v);
|
|
|
if($type == "video"){
|
|
|
- $str.= '<video controls="true" width="100" src="'.$this->_transingurl($v).'" alt="video image" style="margin-right:3px;"></video>';
|
|
|
+ $str.= '<video controls="true" width="100" src="'.$url.'" alt="video image" style="margin-right:3px;"></video>';
|
|
|
}else{
|
|
|
- $str .= '<img width="100px" src="'.$this->_transingurl($v).'" alt="image" style="margin-right:3px;">';
|
|
|
+ $str .= '<img width="100px" src="'.$url.'" alt="image" style="margin-right:3px;">';
|
|
|
}
|
|
|
}
|
|
|
|