diff --git a/codepot/src/codepot/views/project_home.php b/codepot/src/codepot/views/project_home.php
index 2f2960f4..f42a7e78 100644
--- a/codepot/src/codepot/views/project_home.php
+++ b/codepot/src/codepot/views/project_home.php
@@ -1,11 +1,11 @@
-
+
-
+
-
@@ -75,11 +75,12 @@ foreach ($latest_projects as $project)
$cap = "{$project->name} ($project->id)";
else $cap = $project->name;
+ $sum = $project->summary;
//$sum = preg_replace("/(.{15}).+/u", "$1…", $project->summary);
- //$sum = htmlspecialchars ($sum);
+ $sum = htmlspecialchars ($sum);
$anc = anchor ("project/home/{$project->id}",
- htmlspecialchars($cap), "title='{$project->summary}'");
+ htmlspecialchars($cap), "title='$sum'");
print "
{$anc}";
}
?>
@@ -123,7 +124,7 @@ foreach ($latest_projects as $project)
print '
';
print ' | ';
- print '';
+ print ' | ';
print '';
if ($log['action'] == 'revpropchange')
@@ -196,7 +197,7 @@ foreach ($latest_projects as $project)
print '';
print ' | ';
- print '';
+ print ' | ';
print '';
$fmt = $this->lang->line (
'MSG_LOG_'.strtoupper($log['action']).'_BY');
diff --git a/codepot/src/codepot/views/site_show.php b/codepot/src/codepot/views/site_show.php
index e75d8109..8142e088 100644
--- a/codepot/src/codepot/views/site_show.php
+++ b/codepot/src/codepot/views/site_show.php
@@ -22,7 +22,7 @@ function render_wiki()
=htmlspecialchars($site->name)?> (=$site->id?>)
-
+
diff --git a/codepot/src/codepot/views/taskbar.php b/codepot/src/codepot/views/taskbar.php
index 029abcfa..ee9b8928 100644
--- a/codepot/src/codepot/views/taskbar.php
+++ b/codepot/src/codepot/views/taskbar.php
@@ -20,8 +20,9 @@ function show_taskbar ($con, $login)
//print ' ';
- print form_open('main/signin');
+ print form_open('main/signin', array('id' => 'taskbar_signin_form'));
+ print form_fieldset();
//print ' ';
$user_name = "";
@@ -40,7 +41,7 @@ function show_taskbar ($con, $login)
print form_input (
'user_name',
set_value ('user_name', $user_name),
- 'size=12 id="taskbar_user_name"'
+ 'size="12" id="taskbar_user_name"'
);
print ' ';
@@ -52,7 +53,7 @@ function show_taskbar ($con, $login)
print form_password (
'user_pass',
set_value ('user_pass', $user_pass),
- 'size=12 id="taskbar_user_pass"'
+ 'size="12" id="taskbar_user_pass"'
);
print ' ';
@@ -69,6 +70,7 @@ function show_taskbar ($con, $login)
// print '';
//print ' ';
+ print form_fieldset_close();
print form_close();
//print ' ';
diff --git a/codepot/src/codepot/views/wiki_home.php b/codepot/src/codepot/views/wiki_home.php
index 8b85410c..a63a7126 100644
--- a/codepot/src/codepot/views/wiki_home.php
+++ b/codepot/src/codepot/views/wiki_home.php
@@ -1,4 +1,6 @@
-
+
+
+
@@ -11,11 +13,11 @@
-
+
load->view ('taskbar'); ?>
-
+
load->view (
@@ -36,7 +38,7 @@ $this->load->view (
);
?>
-
+
=$this->lang->line('Wikis')?>
@@ -61,11 +63,11 @@ else
-
+
load->view ('footer'); ?>
-
+
diff --git a/codepot/src/codepot/views/wiki_show.php b/codepot/src/codepot/views/wiki_show.php
index 56bdfe61..fc8a0959 100644
--- a/codepot/src/codepot/views/wiki_show.php
+++ b/codepot/src/codepot/views/wiki_show.php
@@ -25,7 +25,7 @@ function render_wiki()
}
-
+
diff --git a/codepot/src/css/common.css b/codepot/src/css/common.css
index 17c3af83..2d086022 100644
--- a/codepot/src/css/common.css
+++ b/codepot/src/css/common.css
@@ -492,3 +492,10 @@ pre.prettyprint .nocode a:hover {
#taskbar_signin_button_panel a {
color: #0073EA;
}
+
+#taskbar_signin_form fieldset {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ white-space: nowrap;
+}
| |