diff --git a/plugins/styx_clock/conf/info.xml b/plugins/styx_clock/conf/info.xml
index ac9eada39..5fdf36c5a 100644
--- a/plugins/styx_clock/conf/info.xml
+++ b/plugins/styx_clock/conf/info.xml
@@ -6,11 +6,6 @@
플래쉬로 된 시계를 출력합니다.
-
- 제목
- text
- 시계내의 제목을 바꿀 수 있습니다. (공백으로 하면 나타나지 않습니다)
-
가로길이
text
diff --git a/plugins/styx_clock/skins/default/clock.swf b/plugins/styx_clock/skins/default/clock.swf
index 55b677c4a..f7cf6a613 100644
Binary files a/plugins/styx_clock/skins/default/clock.swf and b/plugins/styx_clock/skins/default/clock.swf differ
diff --git a/plugins/styx_clock/styx_clock.class.php b/plugins/styx_clock/styx_clock.class.php
index ae52fa877..e4db8cf42 100644
--- a/plugins/styx_clock/styx_clock.class.php
+++ b/plugins/styx_clock/styx_clock.class.php
@@ -22,9 +22,6 @@
// 템플릿 파일을 지정
$tpl_file = 'clock';
- // 플러그인 자체적으로 설정한 변수들을 체크
- $best = $args->best;
-
$theme = $args->theme;
if($theme != "white") $theme = "black";
@@ -35,7 +32,7 @@
if(!$width) $width = 200;
$plugin_info->width = $width;
- $plugin_info->src = sprintf("%s/clock.swf?best=%s&theme=%s&day=%s", $tpl_path, $best, $theme, $day);
+ $plugin_info->src = sprintf("%s/clock.swf?theme=%s&day=%s", $tpl_path, $theme, $day);
Context::set('plugin_info', $plugin_info);