Commit ce9ee03c by Nilu

fix null pointer in page title

parent 76e238b5
......@@ -22,7 +22,7 @@
<meta charset="utf-8"></meta>
<meta http-equiv="X-UA-Compatible" content="IE=edge"></meta>
<meta name="viewport" content="width=device-width, initial-scale=1"></meta>
<title><%= job.getPageTitle() %></title>
<title><%= job != null ? job.getPageTitle() : "Talentology" %></title>
</head>
<body>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment