Skip to content

Commit

Permalink
Change set_javascript to default to false. Fixes simplepie#129
Browse files Browse the repository at this point in the history
  • Loading branch information
rmccue committed Apr 1, 2011
1 parent 48eb379 commit bc2455d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.markdown
Expand Up @@ -73,7 +73,8 @@ Support mailing list -- powered by users, for users.
[http://tech.groups.yahoo.com/group/simplepie-support/](http://tech.groups.yahoo.com/group/simplepie-support/)


## Recently removed
## API Changes
### Recently removed
The following have recently been removed:

* Parameters for SimplePie::__construct()
Expand All @@ -84,3 +85,8 @@ The following have recently been removed:
* set_favicon_handler
* subscribe_* (except subscribe_url)
* utf8_bad_replace

### Changed
The following have recently changed behaviour:

* set_javascript now defaults to false. To replicate 1.2 functionality, `$feed->set_javascript('js')`
2 changes: 1 addition & 1 deletion SimplePie/Core.php
Expand Up @@ -662,7 +662,7 @@ class SimplePie_Core
* @see SimplePie::set_javascript()
* @access private
*/
public $javascript = 'js';
public $javascript = false;

/**
* @var int Maximum number of feeds to check with autodiscovery
Expand Down

0 comments on commit bc2455d

Please sign in to comment.