Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.1.2 #1

Merged
merged 8 commits into from
Dec 31, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file removed inoerp.zip
Binary file not shown.
17 changes: 17 additions & 0 deletions inoerp/content.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
$form_page = true;
$dont_check_login = true;
$content_class = true;
$class_names = [
Expand Down Expand Up @@ -27,6 +28,14 @@
$cup = getrwuPrivilage($content_type->comment_update_role, $_SESSION['user_roles'][0]);
$comment_privilage = $crp + $cwp + $cup;

if ($continue) {
include_once(THEME_DIR . '/header.inc');
} else {
$continue = false;
echo "<h2>Could n't call the header</h2>";
return;
}

if (($content_privilage >= 6) && ($mode == 9)) {
include_once(THEME_DIR . '/content_template.inc');
} else if (($content_privilage >= 4) && empty($$class->$class_id_first) && ($mode == 9)) {
Expand All @@ -50,3 +59,11 @@
}
}
?>
<script type="text/javascript">
$(document).ready(function () {
// $('body').on('click', '#header_top .menu a',function(e){
// e.preventDefault();
// window.location.replace($(this).prop('href'));
//});
});
</script>
205 changes: 0 additions & 205 deletions inoerp/engine/install/class.install.inc

This file was deleted.

Loading