Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Older articles do not adhere to global setting (leave text untouched)?
I have a problem. I have to update ca. 300 articles that I created in the last few months.
After upgrading to the newest version of txp, the following issue occurs:
- each of the articles that have been created before the upgrade have the default setting of “use textile” eventhough in the admin panel “leave text untouched” is set.
- new articles have the correct setting of “leave text untouched”.
Is there a way I can get all of the older articles to automatically have the setting “leave text untouched” as well or do I have to edit each and every single article manually to this?
I had textile turned off all along in all previous versions and did not run into this issue.
Thanks a ton for any advice
Maleika
Offline
#2 2005-11-19 19:56:09
- Mary
- Sock Enthusiast
- Registered: 2004-06-27
- Posts: 6,236
Re: Older articles do not adhere to global setting (leave text untouched)?
Run a query. You can use a tool like phpMyAdmin, or a plugin like rss_admin_db_manager.
<pre><code>UPDATE textpattern SET `textile_body` = ‘0’;
UPDATE textpattern SET `textile_excerpt` = ‘0’;</code></pre>
Offline
Re: Older articles do not adhere to global setting (leave text untouched)?
Thank you Mary.
Offline