Search Tips

How quickly should courts change the law? Florida tests the limit Friday, February 7, 2020

Christian Science Monitor

When the Florida Supreme Court ruled late last month that a unanimous jury is not required for the state to hand down a death sentence, the decision reverberated in the state prisons that house hundreds of felons already sentenced to death.

The legal wrangling over their fate overnight became “chaos,” says Marty McClain, a death-penalty lawyer.

After all, only four years earlier, Florida had struck down the power of judges, not juries, to decide whether or not to execute convicted felons. That ruling followed a landmark U.S. Supreme Court finding that Florida’s system for capital sentencing was unconstitutional and led nearly 100 inmates on death row there to challenge their sentences.

Read more at: https://www.csmonitor.com/USA/Justice/2020/0206/How-quickly-should-courts-change-the-law-Florida-tests-the-limit

 


Runtime Error

Server Error in '/' Application.

Runtime Error

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>