Opened 7 years ago

Last modified 7 years ago

#16986 pending Bug

When I use meta name="description", ckeditor not work

Reported by: Tamil Selvan C Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: Cc:

Description

Steps to reproduce

  1. in form, I used a name="description" for the textarea
  2. and add meta tag name="description"
  3. ckeditor not works

Expected result

CKEditor Works

Actual result

Textarea display instead of CKEditor

Other details (browser, OS, CKEditor version, installed plugins)

I used fuelPHP framework for CKEditor

<?php

echo ckeditor('description', Input::post('description', isset($user) ? $user->description : ), array('class' => 'form-control', 'height' => '140px')); ?>

Change History (1)

comment:1 Changed 7 years ago by Jakub Ś

Keywords: meta tag issue removed
Status: newpending
Version: 4.7.0 (GitHub - major)

I could not reproduce that. I have tired the full page sample and everything worked as expected.

<html>
<head>
	<title></title>
	<meta name="description" content="test">
</head>
<body>
<form enctype="text/plain" name="test"><textarea cols="10" name="description" rows="10"></textarea></form>

<p>&nbsp;</p>
</body>
</html>

Please provide HTML sample (without PHP) which would allow reproducing this issue.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy