diff options
-rw-r--r-- | index.html | 1 | ||||
-rw-r--r-- | js/wwwsqldesigner.js | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -41,6 +41,7 @@ <input type="button" id="editrow" /> <input type="button" id="uprow" class="small" /><input type="button" id="downrow" class="small"/> <input type="button" id="foreigncreate" /> + <input type="button" id="foreignconnect" /> <input type="button" id="removerow" /> <hr/> diff --git a/js/wwwsqldesigner.js b/js/wwwsqldesigner.js index 0e1783f..94cbb60 100644 --- a/js/wwwsqldesigner.js +++ b/js/wwwsqldesigner.js @@ -1490,7 +1490,7 @@ SQL.RowManager.prototype.foreignconnect = function(e) { /* start drawing fk */ this.endConnect(); } else { this.connecting = true; - this.dom.foreignconnect.value = "["+_("foreigconnectnpending")+"]"; + this.dom.foreignconnect.value = "["+_("foreignconnectpending")+"]"; } } |