diff options
author | Robin Appelman <icewind1991@gmail.com> | 2010-10-18 20:58:51 +0000 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2010-10-18 20:58:51 +0000 |
commit | 13efdf6aa7d8c957f5898726725f2e2ed5c61a59 (patch) | |
tree | 4ef1e01d23aa461433a615bcd2b0f3b10db385c6 /js | |
parent | 653c6e5984d7d163c120db71831807b90b51c0f6 (diff) | |
download | nextcloud-server-13efdf6aa7d8c957f5898726725f2e2ed5c61a59.tar.gz nextcloud-server-13efdf6aa7d8c957f5898726725f2e2ed5c61a59.zip |
plugin manager
Diffstat (limited to 'js')
-rw-r--r-- | js/lib_ajax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/lib_ajax.js b/js/lib_ajax.js index a76460632dd..297f612252b 100644 --- a/js/lib_ajax.js +++ b/js/lib_ajax.js @@ -67,7 +67,7 @@ OC_onload.run=function(){ } } for(index in OC_onload.items){ - if(OC_onload.items[index].call){ + if(OC_onload.items[index]&&OC_onload.items[index].call){ OC_onload.items[index].call(); } } |