User login

Manually replace the body of an Activitystream node

Manually updated twitter feed post:
http://anjaliforberpratt.com/node/1270/edit

after that they should properly have the twitter name in the title, but not in the body.

and by manually updated, i mean activitystream breaks the bloody node edit form somehow.

Since i only want to do D7 development, and this is D6, i bailed pretty early and made the change direct in the live database (after careful investigation of course).

select * from node where type='activitystream' ORDER BY nid DESC LIMIT 5;

select n.nid, n.title, body from node n LEFT JOIN node_revisions nr on n.nid = nr.nid where n.type='activitystream' ORDER BY nid DESC LIMIT 3;

UPDATE node_revisions SET body='is pretty excited about all the projects in the works!' WHERE nid=1270;

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.
  • You can use Markdown syntax to format and style the text. Also see Markdown Extra for tables, footnotes, and more.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img> <blockquote> <small> <h2> <h3> <h4> <h5> <h6> <sub> <sup> <p> <br> <strike> <table> <tr> <td> <thead> <th> <tbody> <tt> <output>
  • Lines and paragraphs break automatically.

More information about formatting options

By submitting this form, you accept the Mollom privacy policy.