mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Merge pull request #382 from shama/patch-radio-space
Remove extra space in HtmlHelper radio tag
This commit is contained in:
commit
ab2cf59b3d
2 changed files with 5 additions and 5 deletions
|
@ -281,7 +281,7 @@ class CacheHelper extends AppHelper {
|
||||||
$controller = new ' . $this->_View->name . 'Controller($request, $response);
|
$controller = new ' . $this->_View->name . 'Controller($request, $response);
|
||||||
$controller->plugin = $this->plugin = \'' . $this->_View->plugin . '\';
|
$controller->plugin = $this->plugin = \'' . $this->_View->plugin . '\';
|
||||||
$controller->helpers = $this->helpers = unserialize(base64_decode(\'' . base64_encode(serialize($this->_View->helpers)) . '\'));
|
$controller->helpers = $this->helpers = unserialize(base64_decode(\'' . base64_encode(serialize($this->_View->helpers)) . '\'));
|
||||||
$controller->layout = $this->layout = \'' . $this->_View->layout. '\';
|
$controller->layout = $this->layout = \'' . $this->_View->layout . '\';
|
||||||
$controller->theme = $this->theme = \'' . $this->_View->theme . '\';
|
$controller->theme = $this->theme = \'' . $this->_View->theme . '\';
|
||||||
$controller->viewVars = unserialize(base64_decode(\'' . base64_encode(serialize($this->_View->viewVars)) . '\'));
|
$controller->viewVars = unserialize(base64_decode(\'' . base64_encode(serialize($this->_View->viewVars)) . '\'));
|
||||||
Router::setRequestInfo($controller->request);
|
Router::setRequestInfo($controller->request);
|
||||||
|
|
|
@ -46,7 +46,7 @@ class HtmlHelper extends AppHelper {
|
||||||
'hidden' => '<input type="hidden" name="%s"%s/>',
|
'hidden' => '<input type="hidden" name="%s"%s/>',
|
||||||
'checkbox' => '<input type="checkbox" name="%s" %s/>',
|
'checkbox' => '<input type="checkbox" name="%s" %s/>',
|
||||||
'checkboxmultiple' => '<input type="checkbox" name="%s[]"%s />',
|
'checkboxmultiple' => '<input type="checkbox" name="%s[]"%s />',
|
||||||
'radio' => '<input type="radio" name="%s" id="%s" %s />%s',
|
'radio' => '<input type="radio" name="%s" id="%s"%s />%s',
|
||||||
'selectstart' => '<select name="%s"%s>',
|
'selectstart' => '<select name="%s"%s>',
|
||||||
'selectmultiplestart' => '<select name="%s[]"%s>',
|
'selectmultiplestart' => '<select name="%s[]"%s>',
|
||||||
'selectempty' => '<option value=""%s> </option>',
|
'selectempty' => '<option value=""%s> </option>',
|
||||||
|
@ -235,9 +235,9 @@ class HtmlHelper extends AppHelper {
|
||||||
|
|
||||||
if (!is_array($type)) {
|
if (!is_array($type)) {
|
||||||
$types = array(
|
$types = array(
|
||||||
'rss' => array('type' => 'application/rss+xml', 'rel' => 'alternate', 'title' => $type, 'link' => $url),
|
'rss' => array('type' => 'application/rss+xml', 'rel' => 'alternate', 'title' => $type, 'link' => $url),
|
||||||
'atom' => array('type' => 'application/atom+xml', 'title' => $type, 'link' => $url),
|
'atom' => array('type' => 'application/atom+xml', 'title' => $type, 'link' => $url),
|
||||||
'icon' => array('type' => 'image/x-icon', 'rel' => 'icon', 'link' => $url),
|
'icon' => array('type' => 'image/x-icon', 'rel' => 'icon', 'link' => $url),
|
||||||
'keywords' => array('name' => 'keywords', 'content' => $url),
|
'keywords' => array('name' => 'keywords', 'content' => $url),
|
||||||
'description' => array('name' => 'description', 'content' => $url),
|
'description' => array('name' => 'description', 'content' => $url),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue