|
From: Chris S. <san...@us...> - 2009-06-26 23:11:13
|
Update of /cvsroot/stack/stack-dev In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13313 Modified Files: index.php Log Message: Index: index.php =================================================================== RCS file: /cvsroot/stack/stack-dev/index.php,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** index.php 26 Jun 2009 15:55:50 -0000 1.30 --- index.php 26 Jun 2009 23:11:09 -0000 1.31 *************** *** 181,207 **** <h3 class="section">Administrate STACK</h3> <ul class="horizontal"> ! <li><a href="lib/ui/authorTest.php"><?php echo get_string('FE_index_New'.$key,'stack','') ?></a></li> ! <li><a href="lib/ui/questionImporter.php"><?php echo get_string('FE_index_Import'.$key,'stack','') ?></a></li> ! <li><a href="chat.php"><?php echo get_string('FE_index_Chat'.$key,'stack','') ?></a></li> ! <li><a href="lib/ui/search.php"><?php echo get_string('FE_index_search'.$key,'stack','') ?></a></li> ! <li><a href="lib/ui/report.php"><?php echo get_string('FE_index_Reports'.$key,'stack','') ?></a></li> ! <li><a href="lib/ui/OptionsEdit.php"><?php echo get_string('FE_index_Options'.$key,'stack','') ?></a></li> ! ! <?php ! ! $root = $config->get('docroot'); ! $lang = $config->get('lang'); ! $langfile = $root.'/lang/'.$lang.'/doc/index.html'; ! if (file_exists($langfile)) { ! $docurl = 'lang/'.$lang.'/doc/index.html'; ! } else { ! $docurl = 'lang/en/doc/index.html'; ! } ! ! echo '<li><a href="'.$docurl.'">'.get_string('FE_index_Docs'.$key,'stack','').'</a></li>'; ! ?> ! ! <li><a href="testsuite.php"><?php echo get_string('FE_index_Test'.$key,'stack','') ?></a></li> ! <li><a href="index.php?action=logout"><?php echo get_string('FE_index_Logout'.$key,'stack','') ?></a></li> </ul> </div> --- 181,193 ---- <h3 class="section">Administrate STACK</h3> <ul class="horizontal"> ! <li><a href="lib/ui/authorTest.php"><?php echo get_string('FE_index_New','stack','') ?></a></li> ! <li><a href="lib/ui/questionImporter.php"><?php echo get_string('FE_index_Import','stack','') ?></a></li> ! <li><a href="chat.php"><?php echo get_string('FE_index_Chat','stack','') ?></a></li> ! <li><a href="lib/ui/search.php"><?php echo get_string('FE_index_search','stack','') ?></a></li> ! <li><a href="lib/ui/report.php"><?php echo get_string('FE_index_Reports','stack','') ?></a></li> ! <li><a href="lib/ui/OptionsEdit.php"><?php echo get_string('FE_index_Options','stack','') ?></a></li> ! <li><a href="http://stack.bham.ac.uk/wiki/"><?php echo get_string('FE_index_Docs','stack','') ?></a></li> ! <li><a href="testsuite.php"><?php echo get_string('FE_index_Test','stack','') ?></a></li> ! <li><a href="index.php?action=logout"><?php echo get_string('FE_index_Logout','stack','') ?></a></li> </ul> </div> *************** *** 251,256 **** <br /> <?php ! echo '<h3>'.get_string('stackQuestion_filterQuestions'.$key,'stack','').'</h3>'; ! echo '<p>'.get_string('stackQuestion_filterSearch'.$key,'stack','').'</p>'; $db = new StackDBItem(); --- 237,242 ---- <br /> <?php ! echo '<h3>'.get_string('stackQuestion_filterQuestions','stack','').'</h3>'; ! echo '<p>'.get_string('stackQuestion_filterSearch','stack','').'</p>'; $db = new StackDBItem(); |