Change this:
<a href="<?php echo url('/pireps/filepirep'); ?>">
<i class="fa fa-list"></i> <a href="<?php echo url('/CharterOps') ?>">Charter Ops Center</a></span>
</a>
</li>
to this:
<li>
<a href="<?php echo url('/CharterOps'); ?>">
<i class="fa fa-list"></i> <span>Charter Ops Center</span>
</a>
</li>
You just needed to follow the same code that's already there for the other menu items. You needed to copy it exactly, then just change the url, the fontawesome label, and the title.