From 03d72f274011422865fab69b4a6210c77a97eabe Mon Sep 17 00:00:00 2001 From: cash Date: Sat, 26 Mar 2011 23:43:30 +0000 Subject: Fixes #3250 elgg_get_root_path() to be consistent git-svn-id: http://code.elgg.org/elgg/trunk@8863 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/admin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engine/lib/admin.php') diff --git a/engine/lib/admin.php b/engine/lib/admin.php index 06283d75e..a9a0382cc 100644 --- a/engine/lib/admin.php +++ b/engine/lib/admin.php @@ -459,11 +459,11 @@ function admin_plugin_screenshot_page_handler($pages) { $plugin = new ElggPlugin($plugin_id); if (!$plugin) { - $file = elgg_get_root_dir() . '_graphics/icons/default/medium.png'; + $file = elgg_get_root_path() . '_graphics/icons/default/medium.png'; } else { $file = $plugin->getPath() . $filename; if (!file_exists($file)) { - $file = elgg_get_root_dir() . '_graphics/icons/default/medium.png'; + $file = elgg_get_root_path() . '_graphics/icons/default/medium.png'; } } -- cgit v1.2.3