diff --git a/htroot/Table_API_p.html b/htroot/Table_API_p.html
index c18e32585..033b374cf 100644
--- a/htroot/Table_API_p.html
+++ b/htroot/Table_API_p.html
@@ -161,7 +161,7 @@ To see a list of all APIs, please visit the Edit #(/isCrawlerStart)##[url]#::#(/inline)#
#{/list}#
diff --git a/htroot/Table_API_p.java b/htroot/Table_API_p.java
index 4533d9bc7..1b25a46be 100644
--- a/htroot/Table_API_p.java
+++ b/htroot/Table_API_p.java
@@ -287,6 +287,13 @@ public class Table_API_p {
prop.put("showtable_list_" + count + "_dateNextExec", date_next_exec == null ? "-" : DateFormat.getDateTimeInstance().format(date_next_exec));
prop.put("showtable_list_" + count + "_type", row.get(WorkTables.TABLE_API_COL_TYPE));
prop.put("showtable_list_" + count + "_comment", row.get(WorkTables.TABLE_API_COL_COMMENT));
+ // check type & action to link crawl start URLs back to CrawlStartExpert_p.html
+ if (prop.get("showtable_list_" + count + "_type", "").equals(WorkTables.TABLE_API_TYPE_CRAWLER)
+ && prop.get("showtable_list_" + count + "_comment", "").startsWith("crawl start for")) {
+ prop.put("showtable_list_" + count + "_inline_isCrawlerStart", 1);
+ final String editUrl = UTF8.String(row.get(WorkTables.TABLE_API_COL_URL)).replace("Crawler_p", "CrawlStartExpert_p");
+ prop.put("showtable_list_" + count + "_inline_isCrawlerStart_url", editUrl);
+ }
prop.putHTML("showtable_list_" + count + "_inline_url", "http://" + sb.myPublicIP() + ":" + sb.getConfig("port", "8090") + UTF8.String(row.get(WorkTables.TABLE_API_COL_URL)));
prop.put("showtable_list_" + count + "_scheduler_inline", inline ? "true" : "false");
prop.put("showtable_list_" + count + "_scheduler_filter", typefilter.pattern());