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

Removed short tags in index php file #72

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions represent-map/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ function markerListMouseOut(marker_id) {
google.maps.event.addDomListener(window, 'load', initialize);
</script>

<? echo $head_html; ?>
<?php echo $head_html; ?>
</head>
<body>

Expand Down Expand Up @@ -406,9 +406,9 @@ function markerListMouseOut(marker_id) {
<a href="#modal_info" class="btn btn-large btn-info" data-toggle="modal"><i class="icon-info-sign icon-white"></i>About this Map</a>
<?php if($sg_enabled) { ?>
<a href="#modal_add_choose" class="btn btn-large btn-success" data-toggle="modal"><i class="icon-plus-sign icon-white"></i>Add Something</a>
<? } else { ?>
<?php } else { ?>
<a href="#modal_add" class="btn btn-large btn-success" data-toggle="modal"><i class="icon-plus-sign icon-white"></i>Add Something</a>
<? } ?>
<?php } ?>
</div>
<div class="search">
<input type="text" name="search" id="search" placeholder="Search for companies..." data-provide="typeahead" autocomplete="off" />
Expand Down