- Timestamp:
- 01/20/10 12:18:21 (2 years ago)
- Files:
-
- 1 modified
-
trunk/phpbms/modules/bms/javascript/quickview.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/bms/javascript/quickview.js
r703 r768 66 66 67 67 case "client": 68 if(clientrealid) 68 69 theid = clientrealid.value; 69 70 break; … … 71 72 }//endswitch 72 73 73 theURL += "?backurl=" + encodeURIComponent(currentURL + "?cid=" + clientid.value) 74 if(clientid) 75 theURL += "?backurl=" + encodeURIComponent(currentURL + "?cid=" + clientid.value); 76 else 77 theURL += "?backurl=" + encodeURIComponent(currentURL); 74 78 75 79 if(newedit == "edit"){ … … 80 84 theURL += "&id=" + encodeURIComponent(theid); 81 85 82 } else 83 theURL += "&cid=" + encodeURIComponent(clientid.value); 86 } else { 87 88 if(clientid) 89 theURL += "&cid=" + encodeURIComponent(clientid.value); 90 91 }//endif 84 92 85 93 document.location = theURL;