diff options
| author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-19 03:05:45 +0000 | 
|---|---|---|
| committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-19 03:05:45 +0000 | 
| commit | e0ef12b0954d085fa0620e2414ceb24e88121c12 (patch) | |
| tree | 399d78e796a4dc79535322e0d66e3c3e2e62b4fa | |
| parent | 2dd0ecb8e13c48da7872a650d03a3aa006838aa9 (diff) | |
| download | elgg-e0ef12b0954d085fa0620e2414ceb24e88121c12.tar.gz elgg-e0ef12b0954d085fa0620e2414ceb24e88121c12.tar.bz2  | |
Fixes #2428 last of the $CONFIG removals. Anything missed can be individual tickets
git-svn-id: http://code.elgg.org/elgg/trunk@8305 36083f99-b078-4883-b0ff-0f9b5a30f544
| -rw-r--r-- | mod/blog/lib/blog.php | 11 | ||||
| -rw-r--r-- | mod/thewire/tests/regex.php | 10 | ||||
| -rw-r--r-- | views/default/admin/plugins/advanced.php | 8 | ||||
| -rw-r--r-- | views/default/forms/admin/menu/save.php | 4 | 
4 files changed, 18 insertions, 15 deletions
diff --git a/mod/blog/lib/blog.php b/mod/blog/lib/blog.php index 6ab51ccbd..7fa1b9c5b 100644 --- a/mod/blog/lib/blog.php +++ b/mod/blog/lib/blog.php @@ -407,15 +407,16 @@ function blog_prepare_form_vars($post = NULL, $revision = NULL) {   * @return array   */  function blog_get_blog_months($user_guid = NULL, $container_guid = NULL) { -	global $CONFIG; + +	$db_prefix = elgg_get_config('dbprefix');  	$subtype = get_subtype_id('object', 'blog');  	$q = "SELECT DISTINCT EXTRACT(YEAR_MONTH FROM FROM_UNIXTIME(mdv.string)) AS yearmonth -		FROM {$CONFIG->dbprefix}entities e, {$CONFIG->dbprefix}metadata, {$CONFIG->dbprefix}metastrings mdn, {$CONFIG->dbprefix}metastrings mdv -		WHERE e.guid = {$CONFIG->dbprefix}metadata.entity_guid -		AND {$CONFIG->dbprefix}metadata.name_id = mdn.id -		AND {$CONFIG->dbprefix}metadata.value_id = mdv.id +		FROM {$db_prefix}entities e, {$db_prefix}metadata, {$db_prefix}metastrings mdn, {$db_prefix}metastrings mdv +		WHERE e.guid = {$db_prefix}metadata.entity_guid +		AND {$db_prefix}metadata.name_id = mdn.id +		AND {$db_prefix}metadata.value_id = mdv.id  		AND mdn.string = 'publish_date'";  	if ($user_guid) { diff --git a/mod/thewire/tests/regex.php b/mod/thewire/tests/regex.php index 9e187cf29..5b53c69d6 100644 --- a/mod/thewire/tests/regex.php +++ b/mod/thewire/tests/regex.php @@ -39,13 +39,15 @@ class TheWireRegexTest extends ElggCoreUnitTest {  	}  	protected function getUserWireLink($username) { -		global $CONFIG; -		return "<a href=\"{$CONFIG->wwwroot}pg/thewire/owner/$username\">@$username</a>"; +		$url = "pg/thewire/owner/$username"; +		$url = elgg_normalize_url($url); +		return "<a href=\"$url\">@$username</a>";  	}  	protected function getHashtagLink($tag) { -		global $CONFIG; -		return "<a href=\"{$CONFIG->wwwroot}pg/thewire/tag/$tag\">#$tag</a>"; +		$url = "pg/thewire/tag/$tag"; +		$url = elgg_normalize_url($url); +		return "<a href=\"$url\">#$tag</a>";  	}  	protected function getEmailLink($address) { diff --git a/views/default/admin/plugins/advanced.php b/views/default/admin/plugins/advanced.php index 1c42be14d..6b32035f3 100644 --- a/views/default/admin/plugins/advanced.php +++ b/views/default/admin/plugins/advanced.php @@ -39,8 +39,6 @@ foreach ($installed_plugins as $plugin) {  	}  } -$ts = time(); -$token = generate_action_token($ts);  $categories = array_merge(array('' => elgg_echo('admin:plugins:categories:all')), $categories);  $category_dropdown = elgg_view('input/dropdown', array( @@ -60,8 +58,10 @@ $category_form = elgg_view('input/form', array(  // @todo Until "en/deactivate all" means "All plugins on this page" hide when not looking at all.  if (!isset($show_category) || empty($show_category)) { -	$activate_url = "{$CONFIG->url}action/admin/plugins/activate_all?__elgg_token=$token&__elgg_ts=$ts"; -	$deactivate_url = "{$CONFIG->url}action/admin/plugins/deactivate_all?__elgg_token=$token&__elgg_ts=$ts"; +	$activate_url = "action/admin/plugins/activate_all"; +	$activate_url = elgg_add_action_tokens_to_url($activate_url); +	$deactivate_url = "action/admin/plugins/deactivate_all"; +	$deactivate_url = elgg_add_action_tokens_to_url($deactivate_url);  	$buttons = "<div class=\"mbl\">";  	$buttons .= "<a class='elgg-button-action' href=\"$activate_url\">" . elgg_echo('admin:plugins:activate_all') . '</a> '; diff --git a/views/default/forms/admin/menu/save.php b/views/default/forms/admin/menu/save.php index 2cafaa89b..c55ff3367 100644 --- a/views/default/forms/admin/menu/save.php +++ b/views/default/forms/admin/menu/save.php @@ -4,8 +4,8 @@   */  // get site menu items -global $CONFIG; -$menu = $CONFIG->menus['site']; +$menu = elgg_get_config('menus'); +$menu = $menu['site'];  $builder = new ElggMenuBuilder($menu);  $menu = $builder->getMenu('name');  $menu_items = $menu['default'];  | 
