durrrr s/textValue/textContent/

This commit is contained in:
Brion Vibber 2011-03-11 12:45:55 -08:00
parent e1136bacae
commit d5f5f76947
1 changed files with 2 additions and 2 deletions

View File

@ -208,10 +208,10 @@ class PollPlugin extends MicroAppPlugin
$data = $pollElements->item(0);
foreach ($data->getElementsByTagNameNS(self::POLL_OBJECT, 'question') as $node) {
$question = $node->textValue; // ?
$question = $node->textContent;
}
foreach ($data->getElementsByTagNameNS(self::POLL_OBJECT, 'option') as $node) {
$opts[] = $node->textValue;
$opts[] = $node->textContent;
}
try {
$notice = Poll::saveNew($profile, $question, $opts, $options);