Removed get_include_contents() from /view/index.php because it was moved to /php/helpers.php

This commit is contained in:
Robbie Antenesse 2016-03-17 12:39:07 -06:00
parent 6e5ecb034d
commit e94711a406
1 changed files with 0 additions and 11 deletions

View File

@ -162,14 +162,3 @@ catch (PDOException $ex) {}
</script>
</body>
</html>
<?php
function get_include_contents($filename) {
if (is_file($filename)) {
ob_start();
include $filename;
return ob_get_clean();
}
return false;
}
?>