After installing Dropbox client in a new setup of Drupal 7.20, I get the following error message:

Notice: Undefined variable: links in dropbox_client_block_view() (line 275 of /home/client/public_html/sites/all/modules/dropbox_client/dropbox_client.module).

Independently of this, the module seems to work.

Comments

Gum’s picture

Version: 7.x-3.x-dev » 7.x-3.2
Assigned: Unassigned » Gum

Got the same issue.

boregar’s picture

A temporary ugly workaround (just to have the error message disappear) : edit the file dropbox_client.module and declare a variable $links in the function dropbox_client_block_view

function dropbox_client_block_view( $delta = '' ) {
  global $user;

  $block = '';
  // add the following line
  $links = '';
  ...
-enzo-’s picture

Status: Active » Closed (fixed)
knalstaaf’s picture