From 0b9d44ea4a4ef1092e77641efb5dd328b582ab26 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Tue, 24 Jun 2014 15:24:27 +0000 Subject: [PATCH] changed a variable name --- codepot/src/codepot/views/project_home.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codepot/src/codepot/views/project_home.php b/codepot/src/codepot/views/project_home.php index 6c322dc9..a7be748b 100644 --- a/codepot/src/codepot/views/project_home.php +++ b/codepot/src/codepot/views/project_home.php @@ -88,7 +88,7 @@ $this->load->view ( $m = $members[$i]; if ($m == '') continue; - $icon = ''; + $icon_src = ''; if (array_key_exists($m, $icons)) { // old browsers don't support image data URI. @@ -96,7 +96,7 @@ $this->load->view ( $icon_image = file_get_contents($icon_path); if ($icon_image) { - $icon = sprintf ( + $icon_src = sprintf ( ' ', mime_content_type($icon_path), base64_encode($icon_image) @@ -104,7 +104,7 @@ $this->load->view ( } } - print "
  • {$icon}{$m}
  • "; + print "
  • {$icon_src}{$m}
  • "; } ?>