summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJayaram R Pai2014-07-25 14:15:35 +0530
committerJayaram R Pai2014-07-25 14:15:35 +0530
commitb2e21136393b716eadb9eb44fad672f705e96821 (patch)
treec86bb6b599314c893e3913f8bf430a8765ead060
parent72be1d78db682c29bc9ceb45364380d96fcb7826 (diff)
downloadjob_portal-b2e21136393b716eadb9eb44fad672f705e96821.tar.gz
job_portal-b2e21136393b716eadb9eb44fad672f705e96821.tar.bz2
job_portal-b2e21136393b716eadb9eb44fad672f705e96821.zip
added project field to title
-rw-r--r--job_portal.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/job_portal.module b/job_portal.module
index aa95089..6cbaf72 100644
--- a/job_portal.module
+++ b/job_portal.module
@@ -185,7 +185,7 @@ FOSSEE Team
$output = "";
$i = 1;
foreach($result as $row) {
- $collapser_header = "#{$i} - Job Details";
+ $collapser_header = "#{$i} - {$row->project} - Job Details";
$collapser_content = "
<strong>Position</strong>: {$row->position}<br>
<strong>Specialization</strong>: {$row->specialization}<br>
@@ -276,7 +276,7 @@ FOSSEE Team
foreach($result as $row) {
$item = array(
$row->id,
- $row->position,
+ "{$row->position} [ <strong>{$row->project}</strong> ]",
$row->time,
l("View applications", "jobs/view-applications/{$row->id}")
);