Jump to content

twostars

Retired Forum Member
  • Posts

    3
  • Joined

  • Last visited

About twostars

twostars's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. Fixed two cases of ownership statements being produced grammatically incorrect. IE: Anna Douglas's to Anna Douglas' Replace: echo "<h1>" . $thisadmin['firstname'] . " " . $thisadmin['lastname'] . "'s To-Do List (" . $ites . ")</h1>"; With: if (substr($thisadmin['lastname'], -1) != 's') echo "<h1>" . $thisadmin['firstname'] . " " . $thisadmin['lastname'] . "'s To-Do List (" . $ites . ")</h1>"; else echo "<h1>" . $thisadmin['firstname'] . " " . $thisadmin['lastname'] . "' To-Do List (" . $ites . ")</h1>"; And replace: $vis_dropdown[$key] = $value['firstname'] . " " . $value['lastname'] . "'s"; With: if (substr($value['lastname'], -1) != 's') $vis_dropdown[$key] = $value['firstname'] . " " . $value['lastname'] . "'s"; else $vis_dropdown[$key] = $value['firstname'] . " " . $value['lastname'] . "'"; Good work on the script though. We really appreciate it.
  2. I did not find where the admin notes feature was actually used. It appears to be separate to anything I see. Hence the reason I used it. I was all for creating a new column *coughs and looks at Lethan*, but we decided that it wasn't in use .. so use it!
  3. If you have any questions about it, please let me know. I will do my best to help out as you need. ~twostars
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated