Skip to content
This repository has been archived by the owner on May 26, 2020. It is now read-only.

Commit

Permalink
admin_pages_home.php fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shinokada committed Jul 2, 2011
1 parent f0f9949 commit 75d9dfc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
@@ -1 +1 @@
1
0
2 changes: 1 addition & 1 deletion assets/js/plugins/ajaxfilemanager/session/gc_log.ajax.php
@@ -1,2 +1,2 @@
<?php die(); ?>
gc start at 19/Mar/2011 07:47:44
gc start at 02/Jul/2011 09:58:27
6 changes: 3 additions & 3 deletions modules/pages/views/admin/admin_pages_home.php
Expand Up @@ -28,7 +28,7 @@


echo "<tr ";
if($list['langname']){
if(isset($list['langname'])){
echo "class=\"dentme\"";
}
echo "valign='top'>\n";
Expand All @@ -37,7 +37,7 @@
echo anchor('pages/admin/edit/'.$list['id']."/".$list['path'],$list['name']);
echo "</td>\n";
echo "<td>";
if(!$list['langname']){
if(!isset($list['langname'])){
//if (!preg_match("/\.html$/",$list['path'])){
// $list['path'] .= ".html";
//}
Expand All @@ -57,7 +57,7 @@
echo anchor("kaimonokago/admin/changeStatus/$module/".$list['id'],$this->bep_assets->icon($active_icon), array('class' => $list['status']));
echo "</td>\n";
echo "<td align='center'>";
if($list['langname']){
if(isset($list['langname'])){
echo ucwords($list['langname']);
} else {
echo "English";
Expand Down

0 comments on commit 75d9dfc

Please sign in to comment.