diff options
| author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-10 22:05:49 +0000 | 
|---|---|---|
| committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-10 22:05:49 +0000 | 
| commit | adae1958a95d7e801de91d673e927cac348236d9 (patch) | |
| tree | deb60ecca44c95abc5301b0d64bcd08585e85798 /js/lib/elgglib.js | |
| parent | ea14bfe87eda3af8e8002c64ad909cf592d7fe76 (diff) | |
| download | elgg-adae1958a95d7e801de91d673e927cac348236d9.tar.gz elgg-adae1958a95d7e801de91d673e927cac348236d9.tar.bz2 | |
Fixes #2228: Major cleanup of urls -- remove leading pg/ and trailing / from most urls in core and plugins
git-svn-id: http://code.elgg.org/elgg/trunk@8653 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'js/lib/elgglib.js')
| -rw-r--r-- | js/lib/elgglib.js | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/js/lib/elgglib.js b/js/lib/elgglib.js index 12e89392f..3b409d134 100644 --- a/js/lib/elgglib.js +++ b/js/lib/elgglib.js @@ -238,7 +238,7 @@ elgg.inherit = function(Child, Parent) {   * If the url is already absolute or protocol-relative, no change is made.   *   * elgg.normalize_url('');                   // 'http://my.site.com/' - * elgg.normalize_url('pg/dashboard');       // 'http://my.site.com/pg/dashboard' + * elgg.normalize_url('dashboard');       // 'http://my.site.com/dashboard'   * elgg.normalize_url('http://google.com/'); // no change   * elgg.normalize_url('//google.com/');      // no change   * @@ -272,7 +272,7 @@ elgg.normalize_url = function(url) {  		return 'http://' + url;  	} -	// 'pg/page/handler', 'mod/plugin/file.php' +	// 'page/handler', 'mod/plugin/file.php'  	else {  		// trim off any leading / because the site URL is stored  		// with a trailing / | 
