From 620301858a5b747002eebe2b9fcef10712ee8249 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 20 Jul 2005 07:04:07 +0000 Subject: r8638: continue the trend of maknig our C functions true ejs objects by making the string functions into an object. To keep existing code working I have added: string_init(global); into base.js. That brings the functions into the global scope for our existing scripts (This used to be commit a978484738168b82441c4dc4f5f803d349769a4b) --- source4/scripting/libjs/base.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/scripting/libjs') diff --git a/source4/scripting/libjs/base.js b/source4/scripting/libjs/base.js index 39b62b133e..8a07f4e383 100644 --- a/source4/scripting/libjs/base.js +++ b/source4/scripting/libjs/base.js @@ -9,6 +9,9 @@ if (global["HAVE_BASE_JS"] != undefined) { } HAVE_BASE_JS=1 +/* bring the string functions into the global frame */ +string_init(global); + /* an essential function! */ -- cgit