Log in with username/password: lyceum/lyceum

Changes from tags/1.0.2 at r1285 to tags/1.0.3 at r1285

Show
Ignore:
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tags/1.0.3/src/lib/functions.php

    r1271 r1276  
    311311function slug_from_blog_id($blog_id){ 
    312312   global $wpdb; 
    313    return $wpdb->get_var("SELECT slug FROM blogs WHERE id = '$blog_id'"); 
     313   return $wpdb->get_var("SELECT slug FROM $wpdb->blogs WHERE id = '$blog_id'"); 
    314314} 
    315315 
  • tags/1.0.3/src/lyceum/portal.php

    r1195 r1277  
    5353   <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="<?php echo LURL ?>/atom.php" /> 
    5454 
    55    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
     55   <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_option('system_charset') ?>" /> 
    5656</head> 
    5757 
  • tags/1.0.3/src/lyceum/wp-includes/version.php

    r1274 r1281  
    33// This just holds the version number, in a separate file so we can bump it without cluttering the SVN 
    44 
    5 $wp_version = '1.0.2'; 
     5$wp_version = '1.0.3'; 
    66$wp_db_version = 3; 
    77 
  • tags/1.0.3/src/lyceum/wp-content/themes/default/comments.php

    r1060 r1278  
    7777<?php if ( $user_ID ) : ?> 
    7878 
    79 <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Logout &raquo;</a></p> 
     79<p>Logged in as <a href="<?php echo LURL; ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo LURL; ?>/wp-login.php?action=logout" title="Log out of this account">Logout &raquo;</a></p> 
    8080 
    8181<?php else : ?> 
  • tags/1.0.3/src/lyceum/private.php

    r972 r1279  
    33//    [1] Move /src/lib, /src/config, and /src/installation into /src/lyceum/ 
    44//    [2] comment this out 
     5define('PRIVATE_REL_PATH', './'); 
     6//    [3] uncomment this 
    57// define('PRIVATE_REL_PATH', '../'); 
    6 //    [3] uncomment this 
    7 define('PRIVATE_REL_PATH', './'); 
    88//.........................................................stop editing. 
    99 
  • tags/1.0.3/src/lyceum/wp-settings.php

    r1273 r1280  
    174174   $blog = 'NULL'; 
    175175 
    176 define('LURL', 'http://' . MAINDOMAIN . WEBROOT);// Lyceum URL 
     176define('LURL', PROTOCOL . MAINDOMAIN . WEBROOT);// Lyceum URL 
    177177 
    178178if (!strstr($_SERVER['PHP_SELF'], 'install.php')) : 
Log in with username/password: lyceum/lyceum