Skip to content

Commit

Permalink
Update Project at Sun Apr 23 23:24:57 +07 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
hungnguyenhp committed Apr 23, 2023
1 parent e888203 commit 0f39664
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions system/helpers/seo_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
* @param $description
* @param $image
*
* @return mixed
* @author : 713uk13m <[email protected]>
* @copyright: 713uk13m <[email protected]>
* @time : 23/04/2023 22:17
* @time : 23/04/2023 23:49
*/
function bear_simple_seo_header($title = '', $description = '', $image = '')
{
$CI =& get_instance();
$cms = $CI->load->library('seo_onpage');

return $cms->seo_onpage->published($title, $description, $image);
/** @var \CI_Seo_onpage $seo */
$seo = $cms->seo_onpage;
$seo->published($title, $description, $image);
}
}

0 comments on commit 0f39664

Please sign in to comment.