Plugin Directory

Changeset 2022904


Ignore:
Timestamp:
01/31/2019 05:45:32 PM (7 years ago)
Author:
janiko
Message:

css updated

Location:
zotero-notes/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • zotero-notes/trunk/class.zotero-notes-citation.php

    r2022854 r2022904  
    210210             
    211211            if ( isset($this->_editor) ) {
    212                 $html .= ", ".__('on','zotero-notes')." <i>".$this->_editor."</i>";
     212                $editor = $this->_editor;
     213                if ( strcmp("", $editor) == 0 ) {
     214                    $editor = parse_url($this->_url, PHP_URL_HOST);
     215                }
     216                $html .= " ".__('on','zotero-notes')." <i>".$editor."</i>";
     217                   
    213218            }
    214219           
     
    218223             
    219224            if ( isset($this->_date) ) {
    220                 $html .= ", ".mysql2date( get_option( 'date_format' ), $this->_date);
     225                if ( strcmp("", $this->_date) ) {
     226                    $html .= ", ".mysql2date( get_option( 'date_format' ), $this->_date);
     227                }
    221228            }
    222229           
  • zotero-notes/trunk/readme.txt

    r2022854 r2022904  
    5151== Changelog ==
    5252
    53 = 1.0.3 (a) =
     53= 1.0.3 (b) =
    5454Display function updated (when author is empty)
    5555
Note: See TracChangeset for help on using the changeset viewer.