Changeset 1631
- Timestamp:
- 02/09/12 23:54:53 (3 months ago)
- Location:
- branches/1.0
- Files:
-
- 5 modified
-
modules/base/templates/report.tpl (modified) (1 diff)
-
modules/base/templates/resultSetHtml.php (modified) (2 diffs)
-
owa_auth.php (modified) (2 diffs)
-
owa_env.php (modified) (1 diff)
-
wp_plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/modules/base/templates/report.tpl
r1623 r1631 36 36 37 37 <?php if ( ! $this->get( 'hideSitesFilter' ) ):?> 38 <div class="reportSectionContainer " style="margin-bottom:20px;">38 <div class="reportSectionContainer reportSiteFilter" style="margin-bottom:20px;"> 39 39 <?php include('filter_site.tpl');?> 40 40 </div> -
branches/1.0/modules/base/templates/resultSetHtml.php
r1190 r1631 8 8 <th class="<?php if($v['result_type'] === 'dimension') { echo 'dimensionColumn';} else { echo 'metricColumn';}?>"><?php echo $v['label'];?></th> 9 9 <?php endforeach;?> 10 <?php endif;?>11 10 </tr> 12 11 </thead> … … 31 30 </tr> 32 31 <?php endforeach;?> 33 <?php endif;?>34 32 </tbody> 35 33 </table> -
branches/1.0/owa_auth.php
r1609 r1631 73 73 * Auth class Singleton 74 74 * 75 * @return o bject75 * @return owa_auth 76 76 */ 77 77 public static function get_instance($plugin = '') { … … 114 114 if (owa_coreAPI::getCurrentUser()->isAuthenticated()) { 115 115 $ret = true; 116 } elseif (owa_coreAPI::getRequestParam('apiKey')) { 117 118 116 } elseif (owa_coreAPI::getRequestParam('apiKey')) { 119 117 // auth user by api key 120 118 $ret = $this->authByApiKey(owa_coreAPI::getRequestParam('apiKey')); -
branches/1.0/owa_env.php
r1624 r1631 45 45 define('OWA_CONF_DIR', OWA_DIR.'conf/'); 46 46 define('OWA_THEMES_DIR', OWA_DIR.'themes/'); 47 define('OWA_VERSION', '1.5. 1');47 define('OWA_VERSION', '1.5.2'); 48 48 ?> -
branches/1.0/wp_plugin.php
r1623 r1631 289 289 $domains[] = $blog->siteurl; 290 290 } 291 // load assigned sites list by domain 292 $cu->loadAssignedSitesByDomain($domains); 291 292 // check to see if we are installing before trying to load sites 293 // other wise you run into a race condition as config file 294 // might not be created. 295 if (! defined('OWA_INSTALLING') ) { 296 // load assigned sites list by domain 297 $cu->loadAssignedSitesByDomain($domains); 298 } 299 293 300 $cu->setInitialized(); 294 301 … … 556 563 557 564 $owa = owa_getInstance($params); 558 $owa->setSetting('base', 'cache_objects', false); 559 565 $owa->setSetting('base', 'cache_objects', false); 560 566 $public_url = get_bloginfo('wpurl').'/wp-content/plugins/owa/'; 561 567
