Skip to content

Commit

Permalink
Fix typo that was stripping spaces out of project names in workspace …
Browse files Browse the repository at this point in the history
…properties window
  • Loading branch information
FayCross committed Dec 8, 2023
1 parent d381073 commit 2abfd13
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Expand Up @@ -67,7 +67,7 @@

echo "<tr><td>" . $row_template_name['template_id'] . "</td><td><a href=\"" . $path . $row_template_name['template_id'] . "\" target=\"_blank\">";

echo str_replace("_","",$row_template_name['template_name']);
echo str_replace("_"," ",$row_template_name['template_name']);

echo "<span class=\"sr-only\">(" . WORKSPACE_LIBRARY_LINK_WINDOW . ")</span></a>";

Expand Down
Expand Up @@ -68,7 +68,7 @@

echo "<td><a href=\"" . $path . $row['template_id'] . "\" target=\"_blank\">";

echo str_replace("_","",$row['template_name']);
echo str_replace("_"," ",$row['template_name']);

echo "<span class=\"sr-only\">(" . WORKSPACE_LIBRARY_LINK_WINDOW . ")</span></a></td>";

Expand Down
Expand Up @@ -68,7 +68,7 @@

echo "<td><a href=\"" . $path . $row_template_name['template_id'] . "\" target=\"_blank\">";

echo str_replace("_","",$row_template_name['template_name']);
echo str_replace("_"," ",$row_template_name['template_name']);

echo "<span class=\"sr-only\">(" . WORKSPACE_LIBRARY_LINK_WINDOW . ")</span></a></td>";

Expand Down
Expand Up @@ -72,7 +72,7 @@

echo "<td><a href=\"" . $path . $row_template_name['template_id'] . "\" target=\"_blank\">";

echo str_replace("_","",$row_template_name['template_name']);
echo str_replace("_"," ",$row_template_name['template_name']);


echo "<span class=\"sr-only\">(" . WORKSPACE_LIBRARY_LINK_WINDOW . ")</span></a></td><td class=\"iconCell\">";
Expand Down
Expand Up @@ -69,7 +69,7 @@

echo "<td><a href=\"" . $path . $row_template_name['template_id'] . "\" target=\"_blank\">";

echo str_replace("_","",$row_template_name['template_name']);
echo str_replace("_"," ",$row_template_name['template_name']);

echo "<span class=\"sr-only\">(" . WORKSPACE_LIBRARY_LINK_WINDOW . ")</span></a></td>";

Expand Down
Expand Up @@ -80,7 +80,7 @@

echo "<td><a href=\"" . $path . $row_template_name['template_id'] . "\" target=\"_blank\">";

echo str_replace("_","",$row_template_name['template_name']);
echo str_replace("_"," ",$row_template_name['template_name']);

echo "<span class=\"sr-only\">(" . WORKSPACE_LIBRARY_LINK_WINDOW . ")</span></a></td>";

Expand Down
Expand Up @@ -68,7 +68,7 @@

echo "<td><a href=\"" . $path . $row['template_id'] . "\" target=\"_blank\">";

echo str_replace("_","",$row['template_name']);
echo str_replace("_"," ",$row['template_name']);

echo "<span class=\"sr-only\">(" . WORKSPACE_LIBRARY_LINK_WINDOW . ")</span></a></td></tr>";

Expand Down

0 comments on commit 2abfd13

Please sign in to comment.