seinheit.ch/library/DidgeridooArtwork/Controller/Plugin/SetNames.php
2013-07-08 21:02:22 +02:00

11 lines
No EOL
241 B
PHP

<?php
class DidgeridooArtwork_Controller_Plugin_SetNames extends Katharsis_Controller_Plugin_Abstract
{
public function preController()
{
$view = Katharsis_View::getInstance();
$sql = "SET NAMES utf8";
$this->_con->run($sql);
}
}