sort out anon profile display and write permissions

This commit is contained in:
Mike Macgirvin 2010-07-07 22:44:22 -07:00
parent ac48009180
commit 4b4d680dc4
5 changed files with 26 additions and 232 deletions

View file

@ -3,6 +3,6 @@
<link rel="stylesheet" type="text/css" href="$baseurl/view/style.css" media="all" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script type="text/javascript" src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript" src="$baseurl/include/main.js" ></script>

View file

@ -24,18 +24,6 @@ tinyMCE.init({
});
function openClose(theID) {
if(document.getElementById(theID).style.display == "block") {
document.getElementById(theID).style.display = "none"
}
else {
document.getElementById(theID).style.display = "block"
}
}
function openMenu(theID) {
document.getElementById(theID).style.display = "block"
}
</script>
<!--