diff options
author | Sashi20 | 2018-03-19 12:21:49 +0530 |
---|---|---|
committer | GitHub | 2018-03-19 12:21:49 +0530 |
commit | db2eb87e9c6daaaee06cc8bc3e2875192bc3d266 (patch) | |
tree | c3a8c7fe7e8334f66d4459eab98f2bf030c31495 | |
parent | 9992e07566a58d4c9cd745a1c0432520d8f0e6fe (diff) | |
parent | 54a1117758bcff75c031eabfa713310c8750f474 (diff) | |
download | dwsim_flowsheet-db2eb87e9c6daaaee06cc8bc3e2875192bc3d266.tar.gz dwsim_flowsheet-db2eb87e9c6daaaee06cc8bc3e2875192bc3d266.tar.bz2 dwsim_flowsheet-db2eb87e9c6daaaee06cc8bc3e2875192bc3d266.zip |
Merge pull request #22 from Sashi20/drupal_7.x
Modified links to open in new tab
-rwxr-xr-x | flowsheet_details.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flowsheet_details.inc b/flowsheet_details.inc index 30ec87b..4297f6f 100755 --- a/flowsheet_details.inc +++ b/flowsheet_details.inc @@ -11,12 +11,12 @@ function dwsim_flowsheet_completed_proposals_all() $result = $query->execute(); if ($result->rowCount() == 0) { - $output .= "Work has been completed for the following flow sheets. We welcome your contributions. For more details, please visit ".l("https://dwsim.fossee.in/flowsheeting-project","https://dwsim.fossee.in/flowsheeting-project")."<br>"."<h4>"."If you are looking for flowsheeting project ideas, ".l("click here","https://dwsim.fossee.in/flowsheeting-ideas",array('attributes' => array('class' => array('flash_content'))))."</h4>"."<hr>"; + $output .= "Work has been completed for the following flow sheets. We welcome your contributions. For more details, please visit ".l("https://dwsim.fossee.in/flowsheeting-project","https://dwsim.fossee.in/flowsheeting-project", array('attributes' => array('target' => '_blank')))."<br>"."<h4>"."If you are looking for flowsheeting project ideas, ".l("click here","https://dwsim.fossee.in/flowsheeting-ideas",array('attributes' => array('class' => array('flash_content'), 'target' => '_blank')))."</h4>"."<hr>"; } //$result->rowCount() == 0 else { - $output .= "Work has been completed for the following flow sheets. We welcome your contributions. For more details, please visit ".l("https://dwsim.fossee.in/flowsheeting-project","https://dwsim.fossee.in/flowsheeting-project")."<br>"."<h4>"."If you are looking for flowsheeting project ideas, ".l("click here","https://dwsim.fossee.in/flowsheeting-ideas",array('attributes' => array('class' => array('flash_content'))))."</h4>"."<hr>"; + $output .= "Work has been completed for the following flow sheets. We welcome your contributions. For more details, please visit ".l("https://dwsim.fossee.in/flowsheeting-project","https://dwsim.fossee.in/flowsheeting-project", array('attributes' => array('target' => '_blank')))."<br>"."<h4>"."If you are looking for flowsheeting project ideas, ".l("click here","https://dwsim.fossee.in/flowsheeting-ideas",array('attributes' => array('class' => array('flash_content'), 'target' => '_blank')))."</h4>"."<hr>"; $preference_rows = array(); $i = 1; while ($row = $result->fetchObject()) |