diff --git a/README.md b/README.md index 28bf193d..31cf80ba 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## SilverStripe CMS -[![Build Status](https://secure.travis-ci.org/silverstripe/silverstripe-cms.png?branch=3.0)](http://travis-ci.org/silverstripe/silverstripe-cms) +[![Build Status](https://secure.travis-ci.org/silverstripe/silverstripe-cms.png?branch=3.1)](http://travis-ci.org/silverstripe/silverstripe-cms) PHP5 Content Management System (CMS), see [http://silverstripe.org](http://silverstripe.org). Requires the [`framework`](http://github.com/silverstripe/sapphire) module and a [`silverstripe-installer`](http://github.com/silverstripe/silverstripe-installer) base project. @@ -9,17 +9,28 @@ PHP5 Content Management System (CMS), see [http://silverstripe.org](http://silve See [installation on different platforms](http://doc.silverstripe.org/framework/en/installation/), and [installation from source](http://doc.silverstripe.org/framework/en/installation/from-source). +## Bugtracker ## + +Bugs are tracked on [github.com](https://github.com/silverstripe/silverstripe-cms/issues). +Please read our [issue reporting guidelines](http://doc.silverstripe.org/framework/en/misc/contributing/issues). + +## Development and Contribution ## + +If you would like to make changes to the SilverStripe core codebase, we have an extensive [guide to contributing code](http://doc.silverstripe.org/framework/en/misc/contributing/code). + ## Links ## * [Requirements](http://doc.silverstripe.org/framework/en/installation/server-requirements) * [Changelogs](http://doc.silverstripe.org/framework/en/changelogs/) - * [Bugtracker](http://open.silverstripe.org) + * [Bugtracker: Framework](https://github.com/silverstripe/sapphire/issues) + * [Bugtracker: CMS](https://github.com/silverstripe/silverstripe-cms/issues) + * [Bugtracker: Installer](https://github.com/silverstripe/silverstripe-installer/issues) * [Forums](http://silverstripe.org/forums) * [Developer Mailinglist](https://groups.google.com/forum/#!forum/silverstripe-dev) ## License ## - Copyright (c) 2007-2012, SilverStripe Limited - www.silverstripe.com + Copyright (c) 2007-2013, SilverStripe Limited - www.silverstripe.com All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/javascript/CMSMain.AddForm.js b/javascript/CMSMain.AddForm.js index 5d65067a..39f74167 100644 --- a/javascript/CMSMain.AddForm.js +++ b/javascript/CMSMain.AddForm.js @@ -7,8 +7,9 @@ $(".cms-add-form .parent-mode :input").entwine({ onclick: function(e) { if(this.val() == 'top') { - var parentField = this.closest('form').find('#ParentID .TreeDropdownField'); + var parentField = this.closest('form').find('#ParentID .TreeDropdownField') parentField.setValue(''); + parentField.setTitle(''); } } });